diff options
author | bde <bde@FreeBSD.org> | 2004-05-01 18:09:16 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 2004-05-01 18:09:16 +0000 |
commit | 08de77584af920bed0f1dac3875a701669154baf (patch) | |
tree | 0b5d4de55763d34fe7198489608bfede0f1979fc /sys/dev/cy/cy_isa.c | |
parent | fbdc9f27984d8607175647af70cf2b298b8df47d (diff) | |
download | FreeBSD-src-08de77584af920bed0f1dac3875a701669154baf.zip FreeBSD-src-08de77584af920bed0f1dac3875a701669154baf.tar.gz |
Adjust pathnames for the move from i386/isa to dev/cy.
Adjust staticness and a variable name for the split of cy.c into cy.c and
cy_isa.c. Use the new header required for the split to avoid repeating
declarations in cy_pci.c.
Diffstat (limited to 'sys/dev/cy/cy_isa.c')
-rw-r--r-- | sys/dev/cy/cy_isa.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/dev/cy/cy_isa.c b/sys/dev/cy/cy_isa.c index 0224c23..9a38d1e 100644 --- a/sys/dev/cy/cy_isa.c +++ b/sys/dev/cy/cy_isa.c @@ -40,8 +40,10 @@ __FBSDID("$FreeBSD$"); #include <sys/rman.h> #include <machine/resource.h> -#include <i386/isa/cyreg.h> -#include <i386/isa/ic/cd1400.h> +#include <isa/isavar.h> + +#include <dev/cy/cyreg.h> +#include <dev/cy/cyvar.h> static int cy_isa_attach(device_t dev); static int cy_isa_probe(device_t dev); @@ -55,7 +57,7 @@ static device_method_t cy_isa_methods[] = { }; static driver_t cy_isa_driver = { - driver_name, + cy_driver_name, cy_isa_methods, 0, }; |