aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hwmon/lm90.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/hwmon/lm90.c')
-rw-r--r--drivers/hwmon/lm90.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/hwmon/lm90.c b/drivers/hwmon/lm90.c
index 14de05fcd431..dad0f1074956 100644
--- a/drivers/hwmon/lm90.c
+++ b/drivers/hwmon/lm90.c
@@ -370,11 +370,10 @@ static int lm90_detect(struct i2c_adapter *adapter, int address, int kind)
370 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) 370 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
371 goto exit; 371 goto exit;
372 372
373 if (!(data = kmalloc(sizeof(struct lm90_data), GFP_KERNEL))) { 373 if (!(data = kzalloc(sizeof(struct lm90_data), GFP_KERNEL))) {
374 err = -ENOMEM; 374 err = -ENOMEM;
375 goto exit; 375 goto exit;
376 } 376 }
377 memset(data, 0, sizeof(struct lm90_data));
378 377
379 /* The common I2C client data is placed right before the 378 /* The common I2C client data is placed right before the
380 LM90-specific data. */ 379 LM90-specific data. */