Commit 35fbd397 authored by Paul Fulghum's avatar Paul Fulghum Committed by Linus Torvalds

[PATCH] synclink_gt fix size of register value storage

Fix incorrect variable size used to hold register value.  This bug might
wipe out a portion of the TCR value when setting the interface options.
Signed-off-by: default avatarPaul Fulghum <paulkf@microgate.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent c8d338c8
...@@ -2630,7 +2630,7 @@ static int get_interface(struct slgt_info *info, int __user *if_mode) ...@@ -2630,7 +2630,7 @@ static int get_interface(struct slgt_info *info, int __user *if_mode)
static int set_interface(struct slgt_info *info, int if_mode) static int set_interface(struct slgt_info *info, int if_mode)
{ {
unsigned long flags; unsigned long flags;
unsigned char val; unsigned short val;
DBGINFO(("%s set_interface=%x)\n", info->device_name, if_mode)); DBGINFO(("%s set_interface=%x)\n", info->device_name, if_mode));
spin_lock_irqsave(&info->lock,flags); spin_lock_irqsave(&info->lock,flags);
......
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