[PATCH 3.2 029/101] bcma: use (get|put)_device when probing/removing device driver
From: Ben Hutchings
Date: Thu Jun 01 2017 - 13:06:49 EST
3.2.89-rc1 review patch. If anyone has any objections, please let me know.
------------------
From: RafaÅ MiÅecki <rafal@xxxxxxxxxx>
commit a971df0b9d04674e325346c17de9a895425ca5e1 upstream.
This allows tracking device state and e.g. makes devm work as expected.
Signed-off-by: RafaÅ MiÅecki <rafal@xxxxxxxxxx>
Signed-off-by: Kalle Valo <kvalo@xxxxxxxxxxxxxx>
Signed-off-by: Ben Hutchings <ben@xxxxxxxxxxxxxxx>
---
drivers/bcma/main.c | 4 ++++
1 file changed, 4 insertions(+)
--- a/drivers/bcma/main.c
+++ b/drivers/bcma/main.c
@@ -297,8 +297,11 @@ static int bcma_device_probe(struct devi
drv);
int err = 0;
+ get_device(dev);
if (adrv->probe)
err = adrv->probe(core);
+ if (err)
+ put_device(dev);
return err;
}
@@ -311,6 +314,7 @@ static int bcma_device_remove(struct dev
if (adrv->remove)
adrv->remove(core);
+ put_device(dev);
return 0;
}