style
authorSebastien Bourdeauducq <sb@m-labs.hk>
Sat, 5 Jul 2014 16:56:20 +0000 (18:56 +0200)
committerSebastien Bourdeauducq <sb@m-labs.hk>
Sat, 5 Jul 2014 16:56:20 +0000 (18:56 +0200)
software/libbase/exception.c

index 0b3bae37ed8c0e141c0f17b945f85fee22aa3b3b..73454e32dba41afa60fbe5960cef9c1b92975705 100644 (file)
@@ -7,7 +7,7 @@ void isr(void);
 void exception_handler(unsigned long vect, unsigned long *sp);
 void exception_handler(unsigned long vect, unsigned long *sp)
 {
-       if ((vect & 0xf00) == EXTERNAL_IRQ) {
+       if((vect & 0xf00) == EXTERNAL_IRQ) {
                isr();
        } else {
                /* Unhandled exception */