Commit 785698e3 authored by Dan Carpenter's avatar Dan Carpenter Committed by Greg Kroah-Hartman

Staging: bcm: make major and minor signed

We assume that major is signed in register_control_device_interface().
Signed-off-by: default avatarDan Carpenter <error27@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent bf58bd66
......@@ -484,8 +484,8 @@ struct _MINI_ADAPTER
BOOLEAN AutoSyncup;
struct net_device *dev;
UINT major;
UINT minor;
int major;
int minor;
wait_queue_head_t tx_packet_wait_queue;
wait_queue_head_t process_rx_cntrlpkt;
atomic_t process_waiting;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment