diff options
author | Matthew N. Dodd <mdodd@FreeBSD.org> | 2003-03-29 15:34:26 +0000 |
---|---|---|
committer | Matthew N. Dodd <mdodd@FreeBSD.org> | 2003-03-29 15:34:26 +0000 |
commit | c0a71ab74ae7c2f8f570fd8f1a5f2534762d6c51 (patch) | |
tree | ac242e11de87bfe07741aa6fd6aa07333d56d7bc /sys/dev/ex/if_ex_isa.c | |
parent | ece0c30b62b3285cf96735441e837723ac9f1bd2 (diff) | |
download | src-c0a71ab74ae7c2f8f570fd8f1a5f2534762d6c51.tar.gz src-c0a71ab74ae7c2f8f570fd8f1a5f2534762d6c51.zip |
- Move ex_pccard_detach() to if_ex.c and rename it to ex_detach().
- Add detach method to ISA front end.
Notes
Notes:
svn path=/head/; revision=112800
Diffstat (limited to 'sys/dev/ex/if_ex_isa.c')
-rw-r--r-- | sys/dev/ex/if_ex_isa.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/dev/ex/if_ex_isa.c b/sys/dev/ex/if_ex_isa.c index 88607957491c..13d9d9be3c48 100644 --- a/sys/dev/ex/if_ex_isa.c +++ b/sys/dev/ex/if_ex_isa.c @@ -65,6 +65,7 @@ static device_method_t ex_methods[] = { DEVMETHOD(device_identify, ex_isa_identify), DEVMETHOD(device_probe, ex_isa_probe), DEVMETHOD(device_attach, ex_isa_attach), + DEVMETHOD(device_detach, ex_detach), { 0, 0 } }; |