You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
603 B
19 lines
603 B
--- a/drivers/mtd/devices/bcm47xxsflash.c
|
|
+++ b/drivers/mtd/devices/bcm47xxsflash.c
|
|
@@ -89,6 +89,7 @@ static int bcm47xxsflash_remove(struct p
|
|
}
|
|
|
|
static struct platform_driver bcma_sflash_driver = {
|
|
+ .probe = bcm47xxsflash_probe,
|
|
.remove = bcm47xxsflash_remove,
|
|
.driver = {
|
|
.name = "bcma_sflash",
|
|
@@ -100,7 +101,7 @@ static int __init bcm47xxsflash_init(voi
|
|
{
|
|
int err;
|
|
|
|
- err = platform_driver_probe(&bcma_sflash_driver, bcm47xxsflash_probe);
|
|
+ err = platform_driver_register(&bcma_sflash_driver);
|
|
if (err)
|
|
pr_err("Failed to register BCMA serial flash driver: %d\n",
|
|
err);
|
|
|