Add a rather obnoxious warning if you don't have NEW_PCIB defined

since it's a total crap shoot if things will work.
This commit is contained in:
Warner Losh 2015-01-14 05:41:31 +00:00
parent 5355ab2008
commit 8bf007e1e6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=277163

View File

@ -106,6 +106,8 @@ cardbus_attach(device_t cbdev)
device_printf(cbdev, "failed to allocate bus number\n");
return (ENXIO);
}
#else
device_printf(cbdev, "Your bus numbers may be AFU\n");
#endif
return (0);
}