From: Bhumika Goyal Date: Sat, 19 Aug 2017 08:22:26 +0000 (+0530) Subject: usb: make device_type const X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=53ec7f2733745f35f78ea1bab1e73b30e7667e8b;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git 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 Acked-by: Heikki Krogerus Signed-off-by: Greg Kroah-Hartman --- 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,