summaryrefslogtreecommitdiffstats
path: root/drivers/iio/industrialio-trigger.c
diff options
context:
space:
mode:
authorBhumika Goyal2017-01-21 17:59:49 +0100
committerJonathan Cameron2017-01-22 14:21:42 +0100
commit3bdafc49f5df9f2f741c71b12b76d202211e06f6 (patch)
tree1e1abdbf0ddce7796d51b3ddea3093427ea206b6 /drivers/iio/industrialio-trigger.c
parentiio: trigger: close race condition in acquiring trigger reference (diff)
downloadkernel-qcow2-linux-3bdafc49f5df9f2f741c71b12b76d202211e06f6.tar.gz
kernel-qcow2-linux-3bdafc49f5df9f2f741c71b12b76d202211e06f6.tar.xz
kernel-qcow2-linux-3bdafc49f5df9f2f741c71b12b76d202211e06f6.zip
iio: industrialio-trigger: constify device_type structures
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 declaration of device_type structure. File size before: text data bss dec hex filename 5389 208 48 5645 160d iio/industrialio-trigger.o File size after: text data bss dec hex filename 5453 176 48 5677 162d iio/industrialio-trigger.o Signed-off-by: Bhumika Goyal <bhumirks@gmail.com> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/iio/industrialio-trigger.c')
-rw-r--r--drivers/iio/industrialio-trigger.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/industrialio-trigger.c b/drivers/iio/industrialio-trigger.c
index d0d869eb48f7..54c4d5854ff0 100644
--- a/drivers/iio/industrialio-trigger.c
+++ b/drivers/iio/industrialio-trigger.c
@@ -492,7 +492,7 @@ static void iio_trig_release(struct device *device)
kfree(trig);
}
-static struct device_type iio_trig_type = {
+static const struct device_type iio_trig_type = {
.release = iio_trig_release,
.groups = iio_trig_dev_groups,
};