HID: hid-led: remove report id from struct hidled_config

Delcom uses the report id to submit command information. To be able to
use the hidled framework also for Delcom devices we have to remove the
report id from struct hidled_config.

Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
diff --git a/drivers/hid/hid-led.c b/drivers/hid/hid-led.c
index e11b645..fce2a03 100644
--- a/drivers/hid/hid-led.c
+++ b/drivers/hid/hid-led.c
@@ -54,7 +54,6 @@
 	int			num_leds;
 	size_t			report_size;
 	enum hidled_report_type	report_type;
-	u8			report_id;
 	int (*init)(struct hidled_device *ldev);
 	int (*write)(struct led_classdev *cdev, enum led_brightness br);
 };
@@ -93,8 +92,6 @@
 {
 	int ret;
 
-	buf[0] = ldev->config->report_id;
-
 	mutex_lock(&ldev->lock);
 
 	if (ldev->config->report_type == RAW_REQUEST)
@@ -124,8 +121,6 @@
 	if (ldev->config->report_type != RAW_REQUEST)
 		return -EINVAL;
 
-	buf[0] = ldev->config->report_id;
-
 	mutex_lock(&ldev->lock);
 
 	ret = hid_hw_raw_request(ldev->hdev, buf[0], buf,
@@ -203,7 +198,7 @@
 			 u8 offset)
 {
 	struct hidled_led *led = to_hidled_led(cdev);
-	__u8 buf[MAX_REPORT_SIZE] = { [1] = 'c' };
+	__u8 buf[MAX_REPORT_SIZE] = { 1, 'c' };
 
 	buf[2] = led->rgb->red.cdev.brightness;
 	buf[3] = led->rgb->green.cdev.brightness;
@@ -230,13 +225,12 @@
 	.num_leds = 1,
 	.report_size = 9,
 	.report_type = RAW_REQUEST,
-	.report_id = 1,
 	.write = thingm_write_v1,
 };
 
 static int thingm_init(struct hidled_device *ldev)
 {
-	__u8 buf[MAX_REPORT_SIZE] = { [1] = 'v' };
+	__u8 buf[MAX_REPORT_SIZE] = { 1, 'v' };
 	int ret;
 
 	ret = hidled_recv(ldev, buf);
@@ -259,7 +253,6 @@
 		.num_leds = 1,
 		.report_size = 6,
 		.report_type = OUTPUT_REPORT,
-		.report_id = 0,
 		.write = riso_kagaku_write,
 	},
 	{
@@ -270,7 +263,6 @@
 		.num_leds = 1,
 		.report_size = 9,
 		.report_type = RAW_REQUEST,
-		.report_id = 0,
 		.init = dream_cheeky_init,
 		.write = dream_cheeky_write,
 	},
@@ -282,7 +274,6 @@
 		.num_leds = 2,
 		.report_size = 9,
 		.report_type = RAW_REQUEST,
-		.report_id = 1,
 		.init = thingm_init,
 		.write = thingm_write,
 	},