forked from mirror/openwrt
ar71xx: Fix mikrotik NAND compile problem
There is one closing bracket too much. Fixes:9cad70044f("kernel: fix nand_release() usage.") Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> (cherry picked from commit014d3f593a)
This commit is contained in:
parent
73e0ea1ea9
commit
673e7944bb
1 changed files with 1 additions and 1 deletions
|
|
@ -356,7 +356,7 @@ static int rb4xx_nand_remove(struct platform_device *pdev)
|
|||
{
|
||||
struct rb4xx_nand_info *info = platform_get_drvdata(pdev);
|
||||
|
||||
nand_release(&info->chip));
|
||||
nand_release(&info->chip);
|
||||
platform_set_drvdata(pdev, NULL);
|
||||
kfree(info);
|
||||
gpio_free(RB4XX_NAND_GPIO_NCE);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue