diff options
author | Bhumika Goyal <bhumirks@gmail.com> | 2017-08-19 13:52:26 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-08-28 11:17:57 +0200 |
commit | 53ec7f2733745f35f78ea1bab1e73b30e7667e8b (patch) | |
tree | 90190b15312d6998a1f0b5352599502ede5bb3bf /drivers/usb | |
parent | 706d61b243d954d49fa839dcbcaace930e219271 (diff) | |
download | talos-obmc-linux-53ec7f2733745f35f78ea1bab1e73b30e7667e8b.tar.gz talos-obmc-linux-53ec7f2733745f35f78ea1bab1e73b30e7667e8b.zip |
usb: make device_type const
Make this const as it is only stored in the type field of a device
structure, which is const.
Done using Coccinelle.
Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Acked-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/common/ulpi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/common/ulpi.c b/drivers/usb/common/ulpi.c index 930e8f35f8df..4aa5195db8ea 100644 --- a/drivers/usb/common/ulpi.c +++ b/drivers/usb/common/ulpi.c @@ -135,7 +135,7 @@ static void ulpi_dev_release(struct device *dev) kfree(to_ulpi_dev(dev)); } -static struct device_type ulpi_dev_type = { +static const struct device_type ulpi_dev_type = { .name = "ulpi_device", .groups = ulpi_dev_attr_groups, .release = ulpi_dev_release, |