Skip to content

Commit

Permalink
Staging: bcm: make major and minor signed
Browse files Browse the repository at this point in the history
We assume that major is signed in register_control_device_interface().

Signed-off-by: Dan Carpenter <error27@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Dan Carpenter authored and Greg Kroah-Hartman committed Oct 8, 2010
1 parent bf58bd6 commit 785698e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/bcm/Adapter.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 785698e

Please sign in to comment.