[PATCH 26/26] i8042 - use kzalloc instead of kcalloc

From: Vojtech Pavlik
Date: Sat Sep 10 2005 - 17:37:24 EST


Subject: [PATCH] Input: i8042 - use kzalloc instead of kcalloc
From: Dmitry Torokhov <dtor_core@xxxxxxxxxxxxx>
Date: 1126371882 -0500

Signed-off-by: Dmitry Torokhov <dtor@xxxxxxx>

---

drivers/input/serio/i8042.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)

d39969deee4b541be4ee5789a2e4c14511c886e2
diff --git a/drivers/input/serio/i8042.c b/drivers/input/serio/i8042.c
--- a/drivers/input/serio/i8042.c
+++ b/drivers/input/serio/i8042.c
@@ -986,7 +986,7 @@ static int __init i8042_create_kbd_port(
struct serio *serio;
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)
return -ENOMEM;

@@ -1011,7 +1011,7 @@ static int __init i8042_create_aux_port(
struct serio *serio;
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)
return -ENOMEM;

@@ -1036,7 +1036,7 @@ static int __init i8042_create_mux_port(
struct serio *serio;
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)
return -ENOMEM;


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/