1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-18 10:35:55 +00:00

Create a 'legacy' node for AMD64 as well as i386. While we'll never

have to use it since all AMD64 machines are supposed to have acpi etc,
I'm using it during development so I can avoid the acpi code for now.
Yes, this is cheating.
This commit is contained in:
Peter Wemm 2003-04-30 21:41:41 +00:00
parent 8c027ecbba
commit 0eb8d2e84a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=114335

View File

@ -1112,7 +1112,7 @@ static driver_t isa_driver = {
*/
DRIVER_MODULE(isa, isab, isa_driver, isa_devclass, 0, 0);
DRIVER_MODULE(isa, eisab, isa_driver, isa_devclass, 0, 0);
#ifdef __i386__
#if defined(__i386__) || defined(__amd64__)
DRIVER_MODULE(isa, legacy, isa_driver, isa_devclass, 0, 0);
#endif
MODULE_VERSION(isa, 1);