mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-02 18:33:55 +08:00
PNP / card: add missing put_device() call
This is required so that we give up the last reference to the device. Signed-off-by: Levente Kurusa <levex@linux.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
249135d1a2
commit
75365d04cd
@ -239,6 +239,7 @@ int pnp_add_card(struct pnp_card *card)
|
||||
error = device_register(&card->dev);
|
||||
if (error) {
|
||||
dev_err(&card->dev, "could not register (err=%d)\n", error);
|
||||
put_device(&card->dev);
|
||||
return error;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user