1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-12 14:29:28 +00:00

powerpc: Make OPAL root node probe at bus pass

This way its children can attach earlier if needed, and some subsystems are
attached earlier, like the asynchronous token management.

MFC after:	2 weeks
This commit is contained in:
Justin Hibbits 2019-04-29 01:10:57 +00:00
parent 32e5d7a42e
commit e2e3e7d28e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=346865

View File

@ -95,7 +95,8 @@ static driver_t opaldev_driver = {
static devclass_t opaldev_devclass;
DRIVER_MODULE(opaldev, ofwbus, opaldev_driver, opaldev_devclass, 0, 0);
EARLY_DRIVER_MODULE(opaldev, ofwbus, opaldev_driver, opaldev_devclass, 0, 0,
BUS_PASS_BUS);
static void opal_heartbeat(void);
static void opal_handle_messages(void);