1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-20 02:38:43 +00:00

Need to handle the !FDT case still too... I thought in r270025 we

wouldn't need it, but it appears that we still do for the moment...
This commit is contained in:
Warner Losh 2015-05-22 05:02:53 +00:00
parent 5b03aba6c8
commit c0b346c47d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=283277

View File

@ -646,5 +646,9 @@ static driver_t at91_pio_driver = {
sizeof(struct at91_pio_softc),
};
#ifdef FDT
EARLY_DRIVER_MODULE(at91_pio, at91_pinctrl, at91_pio_driver, at91_pio_devclass,
NULL, NULL, BUS_PASS_INTERRUPT);
#else
DRIVER_MODULE(at91_pio, atmelarm, at91_pio_driver, at91_pio_devclass, NULL, NULL);
#endif