diff options
author | Bhumika Goyal <bhumirks@gmail.com> | 2017-02-11 02:10:37 -0500 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2017-02-14 09:32:34 -0500 |
commit | 12be9f7b5861f14f010ae1ce3b343ae903d7a74d (patch) | |
tree | acf142a638a2659c2f3259bb95e3c0cbbb4bf93c | |
parent | 291e9e3f6931eda50be839500c15b1135146aaf6 (diff) |
HID: intel-ish-hid: constify device_type structure
Declare device_type structure as const as it is only stored in the
type field of a device structure. This field is of type const, so add
const to the declaration of device_type structure.
File size before: drivers/hid/intel-ish-hid/ishtp/bus.o
text data bss dec hex filename
4260 336 16 4612 1204 hid/intel-ish-hid/ishtp/bus.o
File size after: drivers/hid/intel-ish-hid/ishtp/bus.o
text data bss dec hex filename
4324 272 16 4612 1204 hid/intel-ish-hid/ishtp/bus.o
Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Acked-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
-rw-r--r-- | drivers/hid/intel-ish-hid/ishtp/bus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hid/intel-ish-hid/ishtp/bus.c b/drivers/hid/intel-ish-hid/ishtp/bus.c index f4cbc744e657..5f382fedc2ab 100644 --- a/drivers/hid/intel-ish-hid/ishtp/bus.c +++ b/drivers/hid/intel-ish-hid/ishtp/bus.c | |||
@@ -358,7 +358,7 @@ static void ishtp_cl_dev_release(struct device *dev) | |||
358 | kfree(to_ishtp_cl_device(dev)); | 358 | kfree(to_ishtp_cl_device(dev)); |
359 | } | 359 | } |
360 | 360 | ||
361 | static struct device_type ishtp_cl_device_type = { | 361 | static const struct device_type ishtp_cl_device_type = { |
362 | .release = ishtp_cl_dev_release, | 362 | .release = ishtp_cl_dev_release, |
363 | }; | 363 | }; |
364 | 364 | ||