Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 131830
b: refs/heads/master
c: 10715b8
h: refs/heads/master
v: v3
  • Loading branch information
Mike Frysinger authored and David Woodhouse committed Feb 14, 2009
1 parent 2d53fad commit e299014
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 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: e480814f138cd5d78a8efe397756ba6b6518fdb6
refs/heads/master: 10715b8751dfc403aeb7fbc35166417fa1664eda
6 changes: 5 additions & 1 deletion trunk/drivers/mtd/maps/bfin-async-flash.c
Original file line number Diff line number Diff line change
Expand Up @@ -152,14 +152,18 @@ static int __devinit bfin_flash_probe(struct platform_device *pdev)

if (gpio_request(state->enet_flash_pin, DRIVER_NAME)) {
pr_devinit(KERN_ERR DRIVER_NAME ": Failed to request gpio %d\n", state->enet_flash_pin);
kfree(state);
return -EBUSY;
}
gpio_direction_output(state->enet_flash_pin, 1);

pr_devinit(KERN_NOTICE DRIVER_NAME ": probing %d-bit flash bus\n", state->map.bankwidth * 8);
state->mtd = do_map_probe(memory->name, &state->map);
if (!state->mtd)
if (!state->mtd) {
gpio_free(state->enet_flash_pin);
kfree(state);
return -ENXIO;
}

#ifdef CONFIG_MTD_PARTITIONS
ret = parse_mtd_partitions(state->mtd, part_probe_types, &pdata->parts, 0);
Expand Down

0 comments on commit e299014

Please sign in to comment.