diff options
author | Hannes Eder <hannes@hanneseder.net> | 2008-12-13 00:13:45 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-12-13 00:13:45 -0500 |
commit | dfa96ec1bb83641242c48883c2bae8f1f30483b2 (patch) | |
tree | be3599c900140ebf8ccf3d0b1d6adb22820b576a /drivers/isdn/mISDN/timerdev.c | |
parent | bcf91745091ba3b0813fa79afb5d10b090ea745d (diff) |
mISDN: consistently define 'debug' as '*u_int'
Impact: change data type for variable 'debug' from *int to *u_int,
same for the argument type of mISDN_inittimer
In "core.h" mISDN_inittimer is declared with the argument type "*u_int", make
the definition in "timerdev.c" match this.
This fixes also this warnings:
drivers/isdn/mISDN/layer1.c:391:8: warning: incorrect type in assignment (different signedness)
drivers/isdn/mISDN/layer1.c:391:8: expected int *static [toplevel] debug
drivers/isdn/mISDN/layer1.c:391:8: got unsigned int [usertype] *deb
drivers/isdn/mISDN/layer2.c:2200:8: warning: incorrect type in assignment (different signedness)
drivers/isdn/mISDN/layer2.c:2200:8: expected int *static [toplevel] debug
drivers/isdn/mISDN/layer2.c:2200:8: got unsigned int [usertype] *deb
drivers/isdn/mISDN/socket.c:769:8: warning: incorrect type in assignment (different signedness)
drivers/isdn/mISDN/socket.c:769:8: expected int *static [toplevel] debug
drivers/isdn/mISDN/socket.c:769:8: got unsigned int [usertype] *deb
Signed-off-by: Hannes Eder <hannes@hanneseder.net>
Acked-by: Karsten Keil <kkeil@suse.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/isdn/mISDN/timerdev.c')
-rw-r--r-- | drivers/isdn/mISDN/timerdev.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/isdn/mISDN/timerdev.c b/drivers/isdn/mISDN/timerdev.c index 875fabe16e36..a8d1d9fb89e2 100644 --- a/drivers/isdn/mISDN/timerdev.c +++ b/drivers/isdn/mISDN/timerdev.c | |||
@@ -24,7 +24,7 @@ | |||
24 | #include <linux/module.h> | 24 | #include <linux/module.h> |
25 | #include <linux/mISDNif.h> | 25 | #include <linux/mISDNif.h> |
26 | 26 | ||
27 | static int *debug; | 27 | static u_int *debug; |
28 | 28 | ||
29 | 29 | ||
30 | struct mISDNtimerdev { | 30 | struct mISDNtimerdev { |
@@ -274,7 +274,7 @@ static struct miscdevice mISDNtimer = { | |||
274 | }; | 274 | }; |
275 | 275 | ||
276 | int | 276 | int |
277 | mISDN_inittimer(int *deb) | 277 | mISDN_inittimer(u_int *deb) |
278 | { | 278 | { |
279 | int err; | 279 | int err; |
280 | 280 | ||