brcm47xx: add initial support for kernel 3.8
[openwrt/svn-archive/archive.git] / target / linux / brcm47xx / patches-3.8 / 032-mtd-bcm47xxsflash-register-this-as-normal-driver.patch
1 --- a/drivers/mtd/devices/bcm47xxsflash.c
2 +++ b/drivers/mtd/devices/bcm47xxsflash.c
3 @@ -89,6 +89,7 @@ static int bcm47xxsflash_remove(struct p
4 }
5
6 static struct platform_driver bcma_sflash_driver = {
7 + .probe = bcm47xxsflash_probe,
8 .remove = bcm47xxsflash_remove,
9 .driver = {
10 .name = "bcma_sflash",
11 @@ -100,7 +101,7 @@ static int __init bcm47xxsflash_init(voi
12 {
13 int err;
14
15 - err = platform_driver_probe(&bcma_sflash_driver, bcm47xxsflash_probe);
16 + err = platform_driver_register(&bcma_sflash_driver);
17 if (err)
18 pr_err("Failed to register BCMA serial flash driver: %d\n",
19 err);