summaryrefslogtreecommitdiff
path: root/include/linux/ulpi/driver.h
diff options
context:
space:
mode:
authorTal Shorer <tal.shorer@gmail.com>2016-08-16 19:04:52 +0300
committerFelipe Balbi <felipe.balbi@linux.intel.com>2016-09-06 10:47:25 +0300
commitb9454f90c9432e1a70389c26c34e972090efcec6 (patch)
tree94b271db66cb6dc3895fc1203b759448464de28c /include/linux/ulpi/driver.h
parent042b0f31b2a87799a9c832f71474c5be3517e139 (diff)
usb: ulpi: make ops struct constant
None of the core ulpi functions perform any changes to the operations struct, and logically as a struct that contains function pointers there's no reason it shouldn't be constant. Acked-by: Heikki Krogerus <heikki.krogerus@linux.intel.com> Signed-off-by: Tal Shorer <tal.shorer@gmail.com> Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
Diffstat (limited to 'include/linux/ulpi/driver.h')
-rw-r--r--include/linux/ulpi/driver.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/ulpi/driver.h b/include/linux/ulpi/driver.h
index 388f6e08b9d4..a44408f6d532 100644
--- a/include/linux/ulpi/driver.h
+++ b/include/linux/ulpi/driver.h
@@ -15,7 +15,7 @@ struct ulpi_ops;
*/
struct ulpi {
struct ulpi_device_id id;
- struct ulpi_ops *ops;
+ const struct ulpi_ops *ops;
struct device dev;
};