diff options
author | Johan Hovold <johan@kernel.org> | 2014-09-26 06:55:32 -0400 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2014-11-25 11:18:42 -0500 |
commit | 16b5fe2966b8dc4a474d6618d382d26933d90b24 (patch) | |
tree | ff03b321eb5c51455d30bb7aef7c3ecbc5657a47 /drivers/hid | |
parent | 1ab589c72ef66f5f281d658ab606e02d661031d8 (diff) |
HID: hid-sensor-hub: Use mfd_add_hotplug_devices() helper
Use mfd_add_hotplug_devices() helper to register the subdevices.
Compile-only tested.
Signed-off-by: Johan Hovold <johan@kernel.org>
Acked-by: Jiri Kosina <jkosina@suse.cz>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/hid')
-rw-r--r-- | drivers/hid/hid-sensor-hub.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/drivers/hid/hid-sensor-hub.c b/drivers/hid/hid-sensor-hub.c index e6d8e18dae97..6a58b6c723aa 100644 --- a/drivers/hid/hid-sensor-hub.c +++ b/drivers/hid/hid-sensor-hub.c | |||
@@ -641,9 +641,6 @@ static int sensor_hub_probe(struct hid_device *hdev, | |||
641 | goto err_stop_hw; | 641 | goto err_stop_hw; |
642 | } | 642 | } |
643 | sd->hid_sensor_hub_client_devs[ | 643 | sd->hid_sensor_hub_client_devs[ |
644 | sd->hid_sensor_client_cnt].id = | ||
645 | PLATFORM_DEVID_AUTO; | ||
646 | sd->hid_sensor_hub_client_devs[ | ||
647 | sd->hid_sensor_client_cnt].name = name; | 644 | sd->hid_sensor_client_cnt].name = name; |
648 | sd->hid_sensor_hub_client_devs[ | 645 | sd->hid_sensor_hub_client_devs[ |
649 | sd->hid_sensor_client_cnt].platform_data = | 646 | sd->hid_sensor_client_cnt].platform_data = |
@@ -659,8 +656,9 @@ static int sensor_hub_probe(struct hid_device *hdev, | |||
659 | if (last_hsdev) | 656 | if (last_hsdev) |
660 | last_hsdev->end_collection_index = i; | 657 | last_hsdev->end_collection_index = i; |
661 | 658 | ||
662 | ret = mfd_add_devices(&hdev->dev, 0, sd->hid_sensor_hub_client_devs, | 659 | ret = mfd_add_hotplug_devices(&hdev->dev, |
663 | sd->hid_sensor_client_cnt, NULL, 0, NULL); | 660 | sd->hid_sensor_hub_client_devs, |
661 | sd->hid_sensor_client_cnt); | ||
664 | if (ret < 0) | 662 | if (ret < 0) |
665 | goto err_stop_hw; | 663 | goto err_stop_hw; |
666 | 664 | ||