diff options
| author | Dominik Brodowski <linux@dominikbrodowski.net> | 2008-11-02 13:55:45 -0500 | 
|---|---|---|
| committer | Dominik Brodowski <linux@dominikbrodowski.net> | 2008-11-02 13:55:45 -0500 | 
| commit | e689597fe890cf22e23195037aa668c39b25ae4b (patch) | |
| tree | 62ba5dde9cbd3211aa1da104f9e1351812a11706 | |
| parent | 2509698687e2d8265a19d800f7daa6f87790a529 (diff) | |
pcmcia: add braces in error path
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
| -rw-r--r-- | drivers/pcmcia/cistpl.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/pcmcia/cistpl.c b/drivers/pcmcia/cistpl.c index dcce9f5d8465..4a110b7b2673 100644 --- a/drivers/pcmcia/cistpl.c +++ b/drivers/pcmcia/cistpl.c  | |||
| @@ -351,10 +351,11 @@ int verify_cis_cache(struct pcmcia_socket *s) | |||
| 351 | char *buf; | 351 | char *buf; | 
| 352 | 352 | ||
| 353 | buf = kmalloc(256, GFP_KERNEL); | 353 | buf = kmalloc(256, GFP_KERNEL); | 
| 354 | if (buf == NULL) | 354 | if (buf == NULL) { | 
| 355 | dev_printk(KERN_WARNING, &s->dev, | 355 | dev_printk(KERN_WARNING, &s->dev, | 
| 356 | "no memory for verifying CIS\n"); | 356 | "no memory for verifying CIS\n"); | 
| 357 | return -ENOMEM; | 357 | return -ENOMEM; | 
| 358 | } | ||
| 358 | list_for_each_entry(cis, &s->cis_cache, node) { | 359 | list_for_each_entry(cis, &s->cis_cache, node) { | 
| 359 | int len = cis->len; | 360 | int len = cis->len; | 
| 360 | 361 | ||
