Skip to content

Commit fd2dbd5

Browse files
Martin SchwidefskyLinus Torvalds
authored andcommitted
[PATCH] s390 (5/7): iucv driver.
- Add dummy release function to iucv bus.
1 parent 331b7e0 commit fd2dbd5

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

drivers/s390/net/iucv.c

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: iucv.c,v 1.14 2003/09/23 16:48:17 mschwide Exp $
2+
* $Id: iucv.c,v 1.15 2003/10/01 09:25:15 mschwide Exp $
33
*
44
* IUCV network driver
55
*
@@ -29,7 +29,7 @@
2929
* along with this program; if not, write to the Free Software
3030
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
3131
*
32-
* RELEASE-TAG: IUCV lowlevel driver $Revision: 1.14 $
32+
* RELEASE-TAG: IUCV lowlevel driver $Revision: 1.15 $
3333
*
3434
*/
3535

@@ -79,13 +79,19 @@ iucv_bus_match (struct device *dev, struct device_driver *drv)
7979
return 0;
8080
}
8181

82+
static void
83+
iucv_root_release (struct device *dev)
84+
{
85+
}
86+
8287
struct bus_type iucv_bus = {
8388
.name = "iucv",
8489
.match = iucv_bus_match,
8590
};
8691

8792
struct device iucv_root = {
8893
.bus_id = "iucv",
94+
.release = iucv_root_release,
8995
};
9096

9197
/* General IUCV interrupt structure */
@@ -349,7 +355,7 @@ do { \
349355
static void
350356
iucv_banner(void)
351357
{
352-
char vbuf[] = "$Revision: 1.14 $";
358+
char vbuf[] = "$Revision: 1.15 $";
353359
char *version = vbuf;
354360

355361
if ((version = strchr(version, ':'))) {

0 commit comments

Comments
 (0)