Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
977b6892
Commit
977b6892
authored
Jun 26, 2003
by
Martin Schwidefsky
Committed by
Linus Torvalds
Jun 26, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] s390: set module owner.
Pass correct argument to SET_MODULE_OWNER.
parent
6779477a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
12 deletions
+12
-12
drivers/s390/net/ctcmain.c
drivers/s390/net/ctcmain.c
+4
-4
drivers/s390/net/ctctty.c
drivers/s390/net/ctctty.c
+1
-1
drivers/s390/net/lcs.c
drivers/s390/net/lcs.c
+3
-3
drivers/s390/net/netiucv.c
drivers/s390/net/netiucv.c
+4
-4
No files found.
drivers/s390/net/ctcmain.c
View file @
977b6892
/*
* $Id: ctcmain.c,v 1.4
2 2003/05/23 17:45:57 felfert
Exp $
* $Id: ctcmain.c,v 1.4
3 2003/05/27 11:34:23 mschwide
Exp $
*
* CTC / ESCON network driver
*
...
...
@@ -36,7 +36,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* RELEASE-TAG: CTC/ESCON network driver $Revision: 1.4
2
$
* RELEASE-TAG: CTC/ESCON network driver $Revision: 1.4
3
$
*
*/
...
...
@@ -272,7 +272,7 @@ static void
print_banner
(
void
)
{
static
int
printed
=
0
;
char
vbuf
[]
=
"$Revision: 1.4
2
$"
;
char
vbuf
[]
=
"$Revision: 1.4
3
$"
;
char
*
version
=
vbuf
;
if
(
printed
)
...
...
@@ -2752,7 +2752,7 @@ ctc_init_netdevice(struct net_device * dev, int alloc_device,
dev
->
type
=
ARPHRD_SLIP
;
dev
->
tx_queue_len
=
100
;
dev
->
flags
=
IFF_POINTOPOINT
|
IFF_NOARP
;
SET_MODULE_OWNER
(
&
tun
->
dev
);
SET_MODULE_OWNER
(
dev
);
return
dev
;
}
...
...
drivers/s390/net/ctctty.c
View file @
977b6892
/*
* $Id: ctctty.c,v 1.1
1 2003/05/06 09:40:55
mschwide Exp $
* $Id: ctctty.c,v 1.1
2 2003/06/17 11:36:44
mschwide Exp $
*
* CTC / ESCON network driver, tty interface.
*
...
...
drivers/s390/net/lcs.c
View file @
977b6892
...
...
@@ -11,7 +11,7 @@
* Frank Pavlic (pavlic@de.ibm.com) and
* Martin Schwidefsky <schwidefsky@de.ibm.com>
*
* $Revision: 1.5
1 $ $Date: 2003/03/28 08:54:40
$
* $Revision: 1.5
3 $ $Date: 2003/06/17 11:36:45
$
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
@@ -58,7 +58,7 @@
/**
* initialization string for output
*/
#define VERSION_LCS_C "$Revision: 1.5
1
$"
#define VERSION_LCS_C "$Revision: 1.5
3
$"
static
char
version
[]
__initdata
=
"LCS driver ("
VERSION_LCS_C
"/"
VERSION_LCS_H
")"
;
...
...
@@ -1785,7 +1785,7 @@ lcs_new_device(struct ccwgroup_device *ccwgdev)
dev
->
set_multicast_list
=
lcs_set_multicast_list
;
#endif
dev
->
get_stats
=
lcs_getstats
;
SET_MODULE_OWNER
(
&
tun
->
dev
);
SET_MODULE_OWNER
(
dev
);
if
(
register_netdev
(
dev
)
!=
0
)
goto
out
;
netif_stop_queue
(
dev
);
...
...
drivers/s390/net/netiucv.c
View file @
977b6892
/*
* $Id: netiucv.c,v 1.
19 2003/04/08 16:00:17
mschwide Exp $
* $Id: netiucv.c,v 1.
20 2003/05/27 11:34:24
mschwide Exp $
*
* IUCV network driver
*
...
...
@@ -30,7 +30,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* RELEASE-TAG: IUCV network driver $Revision: 1.
19
$
* RELEASE-TAG: IUCV network driver $Revision: 1.
20
$
*
*/
...
...
@@ -1631,7 +1631,7 @@ netiucv_init_netdevice(int ifno, char *username)
dev
->
type
=
ARPHRD_SLIP
;
dev
->
tx_queue_len
=
NETIUCV_QUEUELEN_DEFAULT
;
dev
->
flags
=
IFF_POINTOPOINT
|
IFF_NOARP
;
SET_MODULE_OWNER
(
&
tun
->
dev
);
SET_MODULE_OWNER
(
dev
);
return
dev
;
}
...
...
@@ -1717,7 +1717,7 @@ static struct device_driver netiucv_driver = {
static
void
netiucv_banner
(
void
)
{
char
vbuf
[]
=
"$Revision: 1.
19
$"
;
char
vbuf
[]
=
"$Revision: 1.
20
$"
;
char
*
version
=
vbuf
;
if
((
version
=
strchr
(
version
,
':'
)))
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment