diff options
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/sbus/char/bbc_i2c.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/sbus/char/bbc_i2c.c b/drivers/sbus/char/bbc_i2c.c index fbadd4d761f3..ac8ef2ce07fb 100644 --- a/drivers/sbus/char/bbc_i2c.c +++ b/drivers/sbus/char/bbc_i2c.c | |||
| @@ -357,13 +357,13 @@ static void __init reset_one_i2c(struct bbc_i2c_bus *bp) | |||
| 357 | 357 | ||
| 358 | static int __init attach_one_i2c(struct linux_ebus_device *edev, int index) | 358 | static int __init attach_one_i2c(struct linux_ebus_device *edev, int index) |
| 359 | { | 359 | { |
| 360 | struct bbc_i2c_bus *bp = kmalloc(sizeof(*bp), GFP_KERNEL); | 360 | struct bbc_i2c_bus *bp; |
| 361 | struct linux_ebus_child *echild; | 361 | struct linux_ebus_child *echild; |
| 362 | int entry; | 362 | int entry; |
| 363 | 363 | ||
| 364 | bp = kzalloc(sizeof(*bp), GFP_KERNEL); | ||
| 364 | if (!bp) | 365 | if (!bp) |
| 365 | return -ENOMEM; | 366 | return -ENOMEM; |
| 366 | memset(bp, 0, sizeof(*bp)); | ||
| 367 | 367 | ||
| 368 | bp->i2c_control_regs = ioremap(edev->resource[0].start, 0x2); | 368 | bp->i2c_control_regs = ioremap(edev->resource[0].start, 0x2); |
| 369 | if (!bp->i2c_control_regs) | 369 | if (!bp->i2c_control_regs) |
