aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/bluetooth
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/bluetooth')
-rw-r--r--drivers/bluetooth/bluecard_cs.c4
-rw-r--r--drivers/bluetooth/bt3c_cs.c4
-rw-r--r--drivers/bluetooth/btuart_cs.c4
-rw-r--r--drivers/bluetooth/dtl1_cs.c4
4 files changed, 0 insertions, 16 deletions
diff --git a/drivers/bluetooth/bluecard_cs.c b/drivers/bluetooth/bluecard_cs.c
index a34653db07bc..6f907ebed2d5 100644
--- a/drivers/bluetooth/bluecard_cs.c
+++ b/drivers/bluetooth/bluecard_cs.c
@@ -65,7 +65,6 @@ MODULE_LICENSE("GPL");
65 65
66typedef struct bluecard_info_t { 66typedef struct bluecard_info_t {
67 struct pcmcia_device *p_dev; 67 struct pcmcia_device *p_dev;
68 dev_node_t node;
69 68
70 struct hci_dev *hdev; 69 struct hci_dev *hdev;
71 70
@@ -916,9 +915,6 @@ static int bluecard_config(struct pcmcia_device *link)
916 if (bluecard_open(info) != 0) 915 if (bluecard_open(info) != 0)
917 goto failed; 916 goto failed;
918 917
919 strcpy(info->node.dev_name, info->hdev->name);
920 link->dev_node = &info->node;
921
922 return 0; 918 return 0;
923 919
924failed: 920failed:
diff --git a/drivers/bluetooth/bt3c_cs.c b/drivers/bluetooth/bt3c_cs.c
index 1ad9694d4450..21e05fdc9121 100644
--- a/drivers/bluetooth/bt3c_cs.c
+++ b/drivers/bluetooth/bt3c_cs.c
@@ -72,7 +72,6 @@ MODULE_FIRMWARE("BT3CPCC.bin");
72 72
73typedef struct bt3c_info_t { 73typedef struct bt3c_info_t {
74 struct pcmcia_device *p_dev; 74 struct pcmcia_device *p_dev;
75 dev_node_t node;
76 75
77 struct hci_dev *hdev; 76 struct hci_dev *hdev;
78 77
@@ -751,9 +750,6 @@ found_port:
751 if (bt3c_open(info) != 0) 750 if (bt3c_open(info) != 0)
752 goto failed; 751 goto failed;
753 752
754 strcpy(info->node.dev_name, info->hdev->name);
755 link->dev_node = &info->node;
756
757 return 0; 753 return 0;
758 754
759failed: 755failed:
diff --git a/drivers/bluetooth/btuart_cs.c b/drivers/bluetooth/btuart_cs.c
index 1073d660d625..4ed7288f99db 100644
--- a/drivers/bluetooth/btuart_cs.c
+++ b/drivers/bluetooth/btuart_cs.c
@@ -67,7 +67,6 @@ MODULE_LICENSE("GPL");
67 67
68typedef struct btuart_info_t { 68typedef struct btuart_info_t {
69 struct pcmcia_device *p_dev; 69 struct pcmcia_device *p_dev;
70 dev_node_t node;
71 70
72 struct hci_dev *hdev; 71 struct hci_dev *hdev;
73 72
@@ -680,9 +679,6 @@ found_port:
680 if (btuart_open(info) != 0) 679 if (btuart_open(info) != 0)
681 goto failed; 680 goto failed;
682 681
683 strcpy(info->node.dev_name, info->hdev->name);
684 link->dev_node = &info->node;
685
686 return 0; 682 return 0;
687 683
688failed: 684failed:
diff --git a/drivers/bluetooth/dtl1_cs.c b/drivers/bluetooth/dtl1_cs.c
index 3d72afddabb3..ef044d55cb25 100644
--- a/drivers/bluetooth/dtl1_cs.c
+++ b/drivers/bluetooth/dtl1_cs.c
@@ -67,7 +67,6 @@ MODULE_LICENSE("GPL");
67 67
68typedef struct dtl1_info_t { 68typedef struct dtl1_info_t {
69 struct pcmcia_device *p_dev; 69 struct pcmcia_device *p_dev;
70 dev_node_t node;
71 70
72 struct hci_dev *hdev; 71 struct hci_dev *hdev;
73 72
@@ -629,9 +628,6 @@ static int dtl1_config(struct pcmcia_device *link)
629 if (dtl1_open(info) != 0) 628 if (dtl1_open(info) != 0)
630 goto failed; 629 goto failed;
631 630
632 strcpy(info->node.dev_name, info->hdev->name);
633 link->dev_node = &info->node;
634
635 return 0; 631 return 0;
636 632
637failed: 633failed: