|
@@ -466,35 +466,6 @@ static const struct file_operations uuids_fops = {
|
|
.release = single_release,
|
|
.release = single_release,
|
|
};
|
|
};
|
|
|
|
|
|
-static int auto_accept_delay_set(void *data, u64 val)
|
|
|
|
-{
|
|
|
|
- struct hci_dev *hdev = data;
|
|
|
|
-
|
|
|
|
- hci_dev_lock(hdev);
|
|
|
|
-
|
|
|
|
- hdev->auto_accept_delay = val;
|
|
|
|
-
|
|
|
|
- hci_dev_unlock(hdev);
|
|
|
|
-
|
|
|
|
- return 0;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-static int auto_accept_delay_get(void *data, u64 *val)
|
|
|
|
-{
|
|
|
|
- struct hci_dev *hdev = data;
|
|
|
|
-
|
|
|
|
- hci_dev_lock(hdev);
|
|
|
|
-
|
|
|
|
- *val = hdev->auto_accept_delay;
|
|
|
|
-
|
|
|
|
- hci_dev_unlock(hdev);
|
|
|
|
-
|
|
|
|
- return 0;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-DEFINE_SIMPLE_ATTRIBUTE(auto_accept_delay_fops, auto_accept_delay_get,
|
|
|
|
- auto_accept_delay_set, "%llu\n");
|
|
|
|
-
|
|
|
|
void hci_init_sysfs(struct hci_dev *hdev)
|
|
void hci_init_sysfs(struct hci_dev *hdev)
|
|
{
|
|
{
|
|
struct device *dev = &hdev->dev;
|
|
struct device *dev = &hdev->dev;
|
|
@@ -531,8 +502,6 @@ int hci_add_sysfs(struct hci_dev *hdev)
|
|
|
|
|
|
debugfs_create_file("uuids", 0444, hdev->debugfs, hdev, &uuids_fops);
|
|
debugfs_create_file("uuids", 0444, hdev->debugfs, hdev, &uuids_fops);
|
|
|
|
|
|
- debugfs_create_file("auto_accept_delay", 0444, hdev->debugfs, hdev,
|
|
|
|
- &auto_accept_delay_fops);
|
|
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|