提交 dfa96ec1 编写于 作者: H Hannes Eder 提交者: David S. Miller

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: NHannes Eder <hannes@hanneseder.net>
Acked-by: NKarsten Keil <kkeil@suse.de>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 bcf91745
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#include "layer1.h" #include "layer1.h"
#include "fsm.h" #include "fsm.h"
static int *debug; static u_int *debug;
struct layer1 { struct layer1 {
u_long Flags; u_long Flags;
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
#include "fsm.h" #include "fsm.h"
#include "layer2.h" #include "layer2.h"
static int *debug; static u_int *debug;
static static
struct Fsm l2fsm = {NULL, 0, 0, NULL, NULL}; struct Fsm l2fsm = {NULL, 0, 0, NULL, NULL};
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
#include <linux/mISDNif.h> #include <linux/mISDNif.h>
#include "core.h" #include "core.h"
static int *debug; static u_int *debug;
static struct proto mISDN_proto = { static struct proto mISDN_proto = {
.name = "misdn", .name = "misdn",
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
#include <linux/module.h> #include <linux/module.h>
#include <linux/mISDNif.h> #include <linux/mISDNif.h>
static int *debug; static u_int *debug;
struct mISDNtimerdev { struct mISDNtimerdev {
...@@ -274,7 +274,7 @@ static struct miscdevice mISDNtimer = { ...@@ -274,7 +274,7 @@ static struct miscdevice mISDNtimer = {
}; };
int int
mISDN_inittimer(int *deb) mISDN_inittimer(u_int *deb)
{ {
int err; int err;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册