[PATCH] i2c: kzalloc conversion, other drivers
Use kzalloc instead of kmalloc+memset in all remaining i2c bus and chip drivers. Signed-off-by: Deepak Saxena <dsaxena@plexity.net> Signed-off-by: Jean Delvare <khali@linux-fr.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
ba9c2e8d15
commit
5263ebb51e
@ -243,11 +243,10 @@ static int ds1337_detect(struct i2c_adapter *adapter, int address, int kind)
|
||||
I2C_FUNC_I2C))
|
||||
goto exit;
|
||||
|
||||
if (!(data = kmalloc(sizeof(struct ds1337_data), GFP_KERNEL))) {
|
||||
if (!(data = kzalloc(sizeof(struct ds1337_data), GFP_KERNEL))) {
|
||||
err = -ENOMEM;
|
||||
goto exit;
|
||||
}
|
||||
memset(data, 0, sizeof(struct ds1337_data));
|
||||
INIT_LIST_HEAD(&data->list);
|
||||
|
||||
/* The common I2C client data is placed right before the
|
||||
|
Reference in New Issue
Block a user