aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hwmon/w83627hf.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/hwmon/w83627hf.c')
-rw-r--r--drivers/hwmon/w83627hf.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/hwmon/w83627hf.c b/drivers/hwmon/w83627hf.c
index 48270819ff99..70ef926c3bd8 100644
--- a/drivers/hwmon/w83627hf.c
+++ b/drivers/hwmon/w83627hf.c
@@ -1045,11 +1045,10 @@ static int w83627hf_detect(struct i2c_adapter *adapter)
1045 client structure, even though we cannot fill it completely yet. 1045 client structure, even though we cannot fill it completely yet.
1046 But it allows us to access w83627hf_{read,write}_value. */ 1046 But it allows us to access w83627hf_{read,write}_value. */
1047 1047
1048 if (!(data = kmalloc(sizeof(struct w83627hf_data), GFP_KERNEL))) { 1048 if (!(data = kzalloc(sizeof(struct w83627hf_data), GFP_KERNEL))) {
1049 err = -ENOMEM; 1049 err = -ENOMEM;
1050 goto ERROR1; 1050 goto ERROR1;
1051 } 1051 }
1052 memset(data, 0, sizeof(struct w83627hf_data));
1053 1052
1054 new_client = &data->client; 1053 new_client = &data->client;
1055 i2c_set_clientdata(new_client, data); 1054 i2c_set_clientdata(new_client, data);