1
0
Fork 0

atxp1: Signed/unsigned char bug fix

vid_to_reg() can return -1 and char can be unsigned.

Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
wifi-calibration
Alexey Dobriyan 2006-08-28 14:18:14 +02:00 committed by Greg Kroah-Hartman
parent 563daaf404
commit c41bdb526b
1 changed files with 1 additions and 2 deletions

View File

@ -116,8 +116,7 @@ static ssize_t atxp1_storevcore(struct device *dev, struct device_attribute *att
{
struct atxp1_data *data;
struct i2c_client *client;
char vid;
char cvid;
int vid, cvid;
unsigned int vcore;
client = to_i2c_client(dev);