pcmcia: add braces in error path

Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
This commit is contained in:
Dominik Brodowski 2008-11-02 19:55:45 +01:00
parent 2509698687
commit e689597fe8
1 changed files with 2 additions and 1 deletions

View File

@ -351,10 +351,11 @@ int verify_cis_cache(struct pcmcia_socket *s)
char *buf;
buf = kmalloc(256, GFP_KERNEL);
if (buf == NULL)
if (buf == NULL) {
dev_printk(KERN_WARNING, &s->dev,
"no memory for verifying CIS\n");
return -ENOMEM;
}
list_for_each_entry(cis, &s->cis_cache, node) {
int len = cis->len;