Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 8478
b: refs/heads/master
c: d39969d
h: refs/heads/master
v: v3
  • Loading branch information
Dmitry Torokhov committed Sep 10, 2005
1 parent 0dd8439 commit 0591e3c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: fe1e86049813641a518d15adf7191bd711b4f611
refs/heads/master: d39969deee4b541be4ee5789a2e4c14511c886e2
6 changes: 3 additions & 3 deletions trunk/drivers/input/serio/i8042.c
Original file line number Diff line number Diff line change
Expand Up @@ -986,7 +986,7 @@ static int __init i8042_create_kbd_port(void)
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;

Expand All @@ -1011,7 +1011,7 @@ static int __init i8042_create_aux_port(void)
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;

Expand All @@ -1036,7 +1036,7 @@ static int __init i8042_create_mux_port(int index)
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;

Expand Down

0 comments on commit 0591e3c

Please sign in to comment.