From: Parth Y Shah Date: Fri, 3 Aug 2018 09:20:43 +0000 (+0530) Subject: misc: eeprom: assignment outside the if statement X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=b83a4141f025388fd1edeaa48789e3e166e95c7a;p=openwrt%2Fstaging%2Fblogic.git misc: eeprom: assignment outside the if statement Assignment of any variable should be kept outside the if statement Signed-off-by: Parth Y Shah Reviewed-by: Jean Delvare Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/misc/eeprom/max6875.c b/drivers/misc/eeprom/max6875.c index 0e32709d1022..fc0cf9a7402e 100644 --- a/drivers/misc/eeprom/max6875.c +++ b/drivers/misc/eeprom/max6875.c @@ -148,7 +148,8 @@ static int max6875_probe(struct i2c_client *client, if (client->addr & 1) return -ENODEV; - if (!(data = kzalloc(sizeof(struct max6875_data), GFP_KERNEL))) + data = kzalloc(sizeof(struct max6875_data), GFP_KERNEL); + if (!data) return -ENOMEM; /* A fake client is created on the odd address */