projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
706d61b
)
usb: make device_type const
author
Bhumika Goyal
<bhumirks@gmail.com>
Sat, 19 Aug 2017 08:22:26 +0000
(13:52 +0530)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Mon, 28 Aug 2017 09:17:57 +0000
(11:17 +0200)
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>
drivers/usb/common/ulpi.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/usb/common/ulpi.c
b/drivers/usb/common/ulpi.c
index 930e8f35f8df39255be60e2e8267f3acff72b2f9..4aa5195db8ea53172f4cc5ad04ea375cd1e4a91d 100644
(file)
--- 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,