diff options
-rw-r--r-- | drivers/bluetooth/bt3c_cs.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/bluetooth/bt3c_cs.c b/drivers/bluetooth/bt3c_cs.c index 8925b6d672a6..7ffd3f407144 100644 --- a/drivers/bluetooth/bt3c_cs.c +++ b/drivers/bluetooth/bt3c_cs.c | |||
@@ -638,7 +638,7 @@ static int bt3c_probe(struct pcmcia_device *link) | |||
638 | bt3c_info_t *info; | 638 | bt3c_info_t *info; |
639 | 639 | ||
640 | /* Create new info device */ | 640 | /* Create new info device */ |
641 | info = kzalloc(sizeof(*info), GFP_KERNEL); | 641 | info = devm_kzalloc(&link->dev, sizeof(*info), GFP_KERNEL); |
642 | if (!info) | 642 | if (!info) |
643 | return -ENOMEM; | 643 | return -ENOMEM; |
644 | 644 | ||
@@ -654,10 +654,7 @@ static int bt3c_probe(struct pcmcia_device *link) | |||
654 | 654 | ||
655 | static void bt3c_detach(struct pcmcia_device *link) | 655 | static void bt3c_detach(struct pcmcia_device *link) |
656 | { | 656 | { |
657 | bt3c_info_t *info = link->priv; | ||
658 | |||
659 | bt3c_release(link); | 657 | bt3c_release(link); |
660 | kfree(info); | ||
661 | } | 658 | } |
662 | 659 | ||
663 | static int bt3c_check_config(struct pcmcia_device *p_dev, void *priv_data) | 660 | static int bt3c_check_config(struct pcmcia_device *p_dev, void *priv_data) |