[PATCH] s390 (5/7): iucv driver.

From: Martin Schwidefsky
Date: Mon Oct 06 2003 - 04:31:30 EST


- Add dummy release function to iucv bus.

diffstat:
drivers/s390/net/iucv.c | 12 +++++++++---
1 files changed, 9 insertions(+), 3 deletions(-)

diff -urN linux-2.6/drivers/s390/net/iucv.c linux-2.6-s390/drivers/s390/net/iucv.c
--- linux-2.6/drivers/s390/net/iucv.c Sun Sep 28 02:50:09 2003
+++ linux-2.6-s390/drivers/s390/net/iucv.c Mon Oct 6 10:59:27 2003
@@ -1,5 +1,5 @@
/*
- * $Id: iucv.c,v 1.14 2003/09/23 16:48:17 mschwide Exp $
+ * $Id: iucv.c,v 1.15 2003/10/01 09:25:15 mschwide Exp $
*
* IUCV network driver
*
@@ -29,7 +29,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
- * RELEASE-TAG: IUCV lowlevel driver $Revision: 1.14 $
+ * RELEASE-TAG: IUCV lowlevel driver $Revision: 1.15 $
*
*/

@@ -79,6 +79,11 @@
return 0;
}

+static void
+iucv_root_release (struct device *dev)
+{
+}
+
struct bus_type iucv_bus = {
.name = "iucv",
.match = iucv_bus_match,
@@ -86,6 +91,7 @@

struct device iucv_root = {
.bus_id = "iucv",
+ .release = iucv_root_release,
};

/* General IUCV interrupt structure */
@@ -349,7 +355,7 @@
static void
iucv_banner(void)
{
- char vbuf[] = "$Revision: 1.14 $";
+ char vbuf[] = "$Revision: 1.15 $";
char *version = vbuf;

if ((version = strchr(version, ':'))) {
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/