diff options
author | Bhumika Goyal <bhumirks@gmail.com> | 2017-08-19 13:52:22 +0530 |
---|---|---|
committer | Bjorn Andersson <bjorn.andersson@linaro.org> | 2017-08-24 10:25:50 -0700 |
commit | c42ca04da57aad91689e681a124a174249bc1a70 (patch) | |
tree | efa86cd0d5634f19e5196d6670df62818b0a8386 /drivers/remoteproc | |
parent | c4d77d5fcd8baefb358ae921b940e9bbd09a751e (diff) | |
download | blackbird-op-linux-c42ca04da57aad91689e681a124a174249bc1a70.tar.gz blackbird-op-linux-c42ca04da57aad91689e681a124a174249bc1a70.zip |
remoteproc: 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>
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Diffstat (limited to 'drivers/remoteproc')
-rw-r--r-- | drivers/remoteproc/remoteproc_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/remoteproc/remoteproc_core.c b/drivers/remoteproc/remoteproc_core.c index 364ef28bac84..48b2c5ddfb4d 100644 --- a/drivers/remoteproc/remoteproc_core.c +++ b/drivers/remoteproc/remoteproc_core.c @@ -1360,7 +1360,7 @@ static void rproc_type_release(struct device *dev) kfree(rproc); } -static struct device_type rproc_type = { +static const struct device_type rproc_type = { .name = "remoteproc", .release = rproc_type_release, }; |