mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-30 02:21:15 +00:00
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>
This commit is contained in:
parent
706d61b243
commit
53ec7f2733
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ static void ulpi_dev_release(struct device *dev)
|
||||||
kfree(to_ulpi_dev(dev));
|
kfree(to_ulpi_dev(dev));
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct device_type ulpi_dev_type = {
|
static const struct device_type ulpi_dev_type = {
|
||||||
.name = "ulpi_device",
|
.name = "ulpi_device",
|
||||||
.groups = ulpi_dev_attr_groups,
|
.groups = ulpi_dev_attr_groups,
|
||||||
.release = ulpi_dev_release,
|
.release = ulpi_dev_release,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue