arc: IRQ_CONFIG should not enable the irq

Drivers do it by themselves, usually either in a dedicated irq
configuration function or direcly in their initialization routine.

Change-Id: Id1cca1a1e3e3f36264d99d1d2f2d651d84e0687e
Signed-off-by: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
This commit is contained in:
Tomasz Bursztyka 2015-10-15 15:56:31 +03:00 committed by Anas Nashif
commit 86db1b37bd

View file

@ -89,7 +89,6 @@ extern "C" {
*
*/
#define IRQ_CONFIG(isr, irq, priority) \
irq_connect(irq, priority, isr, NULL); \
irq_enable(irq);
irq_connect(irq, priority, isr, NULL);
#endif /* _ARC_ARCH__H_ */