Commit 4e5a494e authored by Jiri Kosina's avatar Jiri Kosina

Merge branch 'for-3.12/sensor-hub' into for-linus

Conflicts:
	drivers/hid/hid-sensor-hub.c
parents 63faf15d 7b0692f1
...@@ -103,8 +103,7 @@ static int sensor_hub_get_physical_device_count( ...@@ -103,8 +103,7 @@ static int sensor_hub_get_physical_device_count(
list_for_each_entry(report, &report_enum->report_list, list) { list_for_each_entry(report, &report_enum->report_list, list) {
field = report->field[0]; field = report->field[0];
if (report->maxfield && field && if (report->maxfield && field && field->physical)
field->physical)
cnt++; cnt++;
} }
...@@ -395,6 +394,7 @@ static int sensor_hub_reset_resume(struct hid_device *hdev) ...@@ -395,6 +394,7 @@ static int sensor_hub_reset_resume(struct hid_device *hdev)
return 0; return 0;
} }
#endif #endif
/* /*
* Handle raw report as sent by device * Handle raw report as sent by device
*/ */
...@@ -422,7 +422,6 @@ static int sensor_hub_raw_event(struct hid_device *hdev, ...@@ -422,7 +422,6 @@ static int sensor_hub_raw_event(struct hid_device *hdev,
spin_lock_irqsave(&pdata->lock, flags); spin_lock_irqsave(&pdata->lock, flags);
for (i = 0; i < report->maxfield; ++i) { for (i = 0; i < report->maxfield; ++i) {
hid_dbg(hdev, "%d collection_index:%x hid:%x sz:%x\n", hid_dbg(hdev, "%d collection_index:%x hid:%x sz:%x\n",
i, report->field[i]->usage->collection_index, i, report->field[i]->usage->collection_index,
report->field[i]->usage->hid, report->field[i]->usage->hid,
...@@ -432,11 +431,10 @@ static int sensor_hub_raw_event(struct hid_device *hdev, ...@@ -432,11 +431,10 @@ static int sensor_hub_raw_event(struct hid_device *hdev,
if (pdata->pending.status && pdata->pending.attr_usage_id == if (pdata->pending.status && pdata->pending.attr_usage_id ==
report->field[i]->usage->hid) { report->field[i]->usage->hid) {
hid_dbg(hdev, "data was pending ...\n"); hid_dbg(hdev, "data was pending ...\n");
pdata->pending.raw_data = kmalloc(sz, GFP_ATOMIC); pdata->pending.raw_data = kmemdup(ptr, sz, GFP_ATOMIC);
if (pdata->pending.raw_data) { if (pdata->pending.raw_data)
memcpy(pdata->pending.raw_data, ptr, sz);
pdata->pending.raw_size = sz; pdata->pending.raw_size = sz;
} else else
pdata->pending.raw_size = 0; pdata->pending.raw_size = 0;
complete(&pdata->pending.ready); complete(&pdata->pending.ready);
} }
...@@ -479,16 +477,15 @@ static int sensor_hub_probe(struct hid_device *hdev, ...@@ -479,16 +477,15 @@ static int sensor_hub_probe(struct hid_device *hdev,
struct hid_field *field; struct hid_field *field;
int dev_cnt; int dev_cnt;
sd = kzalloc(sizeof(struct sensor_hub_data), GFP_KERNEL); sd = devm_kzalloc(&hdev->dev, sizeof(*sd), GFP_KERNEL);
if (!sd) { if (!sd) {
hid_err(hdev, "cannot allocate Sensor data\n"); hid_err(hdev, "cannot allocate Sensor data\n");
return -ENOMEM; return -ENOMEM;
} }
sd->hsdev = kzalloc(sizeof(struct hid_sensor_hub_device), GFP_KERNEL); sd->hsdev = devm_kzalloc(&hdev->dev, sizeof(*sd->hsdev), GFP_KERNEL);
if (!sd->hsdev) { if (!sd->hsdev) {
hid_err(hdev, "cannot allocate hid_sensor_hub_device\n"); hid_err(hdev, "cannot allocate hid_sensor_hub_device\n");
ret = -ENOMEM; return -ENOMEM;
goto err_free_hub;
} }
hid_set_drvdata(hdev, sd); hid_set_drvdata(hdev, sd);
sd->hsdev->hdev = hdev; sd->hsdev->hdev = hdev;
...@@ -500,14 +497,14 @@ static int sensor_hub_probe(struct hid_device *hdev, ...@@ -500,14 +497,14 @@ static int sensor_hub_probe(struct hid_device *hdev,
ret = hid_parse(hdev); ret = hid_parse(hdev);
if (ret) { if (ret) {
hid_err(hdev, "parse failed\n"); hid_err(hdev, "parse failed\n");
goto err_free; return ret;
} }
INIT_LIST_HEAD(&hdev->inputs); INIT_LIST_HEAD(&hdev->inputs);
ret = hid_hw_start(hdev, 0); ret = hid_hw_start(hdev, 0);
if (ret) { if (ret) {
hid_err(hdev, "hw start failed\n"); hid_err(hdev, "hw start failed\n");
goto err_free; return ret;
} }
ret = hid_hw_open(hdev); ret = hid_hw_open(hdev);
if (ret) { if (ret) {
...@@ -572,10 +569,6 @@ static int sensor_hub_probe(struct hid_device *hdev, ...@@ -572,10 +569,6 @@ static int sensor_hub_probe(struct hid_device *hdev,
hid_hw_close(hdev); hid_hw_close(hdev);
err_stop_hw: err_stop_hw:
hid_hw_stop(hdev); hid_hw_stop(hdev);
err_free:
kfree(sd->hsdev);
err_free_hub:
kfree(sd);
return ret; return ret;
} }
...@@ -599,8 +592,6 @@ static void sensor_hub_remove(struct hid_device *hdev) ...@@ -599,8 +592,6 @@ static void sensor_hub_remove(struct hid_device *hdev)
kfree(data->hid_sensor_hub_client_devs); kfree(data->hid_sensor_hub_client_devs);
hid_set_drvdata(hdev, NULL); hid_set_drvdata(hdev, NULL);
mutex_destroy(&data->mutex); mutex_destroy(&data->mutex);
kfree(data->hsdev);
kfree(data);
} }
static const struct hid_device_id sensor_hub_devices[] = { static const struct hid_device_id sensor_hub_devices[] = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment