|
@@ -166,9 +166,9 @@ void hci_conn_del_sysfs(struct hci_conn *conn)
|
|
queue_work(bt_workq, &conn->work_del);
|
|
queue_work(bt_workq, &conn->work_del);
|
|
}
|
|
}
|
|
|
|
|
|
-static inline char *host_typetostr(int type)
|
|
|
|
|
|
+static inline char *host_bustostr(int bus)
|
|
{
|
|
{
|
|
- switch (type) {
|
|
|
|
|
|
+ switch (bus) {
|
|
case HCI_VIRTUAL:
|
|
case HCI_VIRTUAL:
|
|
return "VIRTUAL";
|
|
return "VIRTUAL";
|
|
case HCI_USB:
|
|
case HCI_USB:
|
|
@@ -188,10 +188,10 @@ static inline char *host_typetostr(int type)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
-static ssize_t show_type(struct device *dev, struct device_attribute *attr, char *buf)
|
|
|
|
|
|
+static ssize_t show_bus(struct device *dev, struct device_attribute *attr, char *buf)
|
|
{
|
|
{
|
|
struct hci_dev *hdev = dev_get_drvdata(dev);
|
|
struct hci_dev *hdev = dev_get_drvdata(dev);
|
|
- return sprintf(buf, "%s\n", host_typetostr(hdev->type));
|
|
|
|
|
|
+ return sprintf(buf, "%s\n", host_bustostr(hdev->bus));
|
|
}
|
|
}
|
|
|
|
|
|
static ssize_t show_name(struct device *dev, struct device_attribute *attr, char *buf)
|
|
static ssize_t show_name(struct device *dev, struct device_attribute *attr, char *buf)
|
|
@@ -355,7 +355,7 @@ static ssize_t store_sniff_min_interval(struct device *dev, struct device_attrib
|
|
return count;
|
|
return count;
|
|
}
|
|
}
|
|
|
|
|
|
-static DEVICE_ATTR(type, S_IRUGO, show_type, NULL);
|
|
|
|
|
|
+static DEVICE_ATTR(bus, S_IRUGO, show_bus, NULL);
|
|
static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
|
|
static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
|
|
static DEVICE_ATTR(class, S_IRUGO, show_class, NULL);
|
|
static DEVICE_ATTR(class, S_IRUGO, show_class, NULL);
|
|
static DEVICE_ATTR(address, S_IRUGO, show_address, NULL);
|
|
static DEVICE_ATTR(address, S_IRUGO, show_address, NULL);
|
|
@@ -373,7 +373,7 @@ static DEVICE_ATTR(sniff_min_interval, S_IRUGO | S_IWUSR,
|
|
show_sniff_min_interval, store_sniff_min_interval);
|
|
show_sniff_min_interval, store_sniff_min_interval);
|
|
|
|
|
|
static struct attribute *bt_host_attrs[] = {
|
|
static struct attribute *bt_host_attrs[] = {
|
|
- &dev_attr_type.attr,
|
|
|
|
|
|
+ &dev_attr_bus.attr,
|
|
&dev_attr_name.attr,
|
|
&dev_attr_name.attr,
|
|
&dev_attr_class.attr,
|
|
&dev_attr_class.attr,
|
|
&dev_attr_address.attr,
|
|
&dev_attr_address.attr,
|
|
@@ -414,7 +414,7 @@ int hci_register_sysfs(struct hci_dev *hdev)
|
|
struct device *dev = &hdev->dev;
|
|
struct device *dev = &hdev->dev;
|
|
int err;
|
|
int err;
|
|
|
|
|
|
- BT_DBG("%p name %s type %d", hdev, hdev->name, hdev->type);
|
|
|
|
|
|
+ BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus);
|
|
|
|
|
|
dev->type = &bt_host;
|
|
dev->type = &bt_host;
|
|
dev->class = bt_class;
|
|
dev->class = bt_class;
|
|
@@ -433,7 +433,7 @@ int hci_register_sysfs(struct hci_dev *hdev)
|
|
|
|
|
|
void hci_unregister_sysfs(struct hci_dev *hdev)
|
|
void hci_unregister_sysfs(struct hci_dev *hdev)
|
|
{
|
|
{
|
|
- BT_DBG("%p name %s type %d", hdev, hdev->name, hdev->type);
|
|
|
|
|
|
+ BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus);
|
|
|
|
|
|
device_del(&hdev->dev);
|
|
device_del(&hdev->dev);
|
|
}
|
|
}
|