|
From: Kenn H. <ke...@us...> - 2005-02-28 22:46:30
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax/bus In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9970/include/asm-vax/bus Modified Files: vsbus.h Log Message: Initial cut at support for driver removal in VSBUS drivers. This is untested, since we don't have support for loadable modules yet. Index: vsbus.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/bus/vsbus.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- vsbus.h 18 Sep 2004 23:06:34 -0000 1.2 +++ vsbus.h 28 Feb 2005 22:46:19 -0000 1.3 @@ -41,6 +41,7 @@ struct vsbus_driver { int (*probe)(struct vsbus_device *vsbus_dev); + void (*remove)(struct vsbus_device *vsbus_dev); struct device_driver drv; }; |