Input: i8042 - use kzalloc instead of kcalloc
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
This commit is contained in:
Родитель
fe1e860498
Коммит
d39969deee
|
@ -986,7 +986,7 @@ static int __init i8042_create_kbd_port(void)
|
||||||
struct serio *serio;
|
struct serio *serio;
|
||||||
struct i8042_port *port = &i8042_ports[I8042_KBD_PORT_NO];
|
struct i8042_port *port = &i8042_ports[I8042_KBD_PORT_NO];
|
||||||
|
|
||||||
serio = kcalloc(1, sizeof(struct serio), GFP_KERNEL);
|
serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
|
||||||
if (!serio)
|
if (!serio)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
|
@ -1011,7 +1011,7 @@ static int __init i8042_create_aux_port(void)
|
||||||
struct serio *serio;
|
struct serio *serio;
|
||||||
struct i8042_port *port = &i8042_ports[I8042_AUX_PORT_NO];
|
struct i8042_port *port = &i8042_ports[I8042_AUX_PORT_NO];
|
||||||
|
|
||||||
serio = kcalloc(1, sizeof(struct serio), GFP_KERNEL);
|
serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
|
||||||
if (!serio)
|
if (!serio)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
|
@ -1036,7 +1036,7 @@ static int __init i8042_create_mux_port(int index)
|
||||||
struct serio *serio;
|
struct serio *serio;
|
||||||
struct i8042_port *port = &i8042_ports[I8042_MUX_PORT_NO + index];
|
struct i8042_port *port = &i8042_ports[I8042_MUX_PORT_NO + index];
|
||||||
|
|
||||||
serio = kcalloc(1, sizeof(struct serio), GFP_KERNEL);
|
serio = kzalloc(sizeof(struct serio), GFP_KERNEL);
|
||||||
if (!serio)
|
if (!serio)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче