Do not enable interrupts yet

This requires an interrupt handler to be configured first.
This commit is contained in:
Pierre Pronchery 2018-07-15 03:56:00 +02:00
parent 9a4e58760f
commit f59ea7131e

View File

@ -18,5 +18,7 @@ intr_disable:
.global intr_enable
.type intr_enable, @function
intr_enable:
#if 0 /* FIXME requires an interrupt handler */
sti
#endif
ret