drivers: remoteproc: constify rproc_ops structures
authorBhumika Goyal <bhumirks@gmail.com>
Sun, 1 Jan 2017 10:43:37 +0000 (16:13 +0530)
committerBjorn Andersson <bjorn.andersson@linaro.org>
Wed, 18 Jan 2017 18:46:50 +0000 (10:46 -0800)
Declare rproc_ops structures as const as they are only passed as an
argument to the function rproc_alloc. This argument is of type const, so
rproc_ops structures having this property can be declared const too.
Done using Coccinelle:

@r1 disable optional_qualifier @
identifier i;
position p;
@@
static struct rproc_ops i@p = {...};

@ok1@
identifier r1.i;
position p;
@@
rproc_alloc(...,&i@p,...)

@bad@
position p!={r1.p,ok1.p};
identifier r1.i;
@@
i@p

@depends on !bad disable optional_qualifier@
identifier r1.i;
@@
+const
struct rproc_ops i;

File size details:

Size of the file remoteproc/da8xx_remoteproc.o remains the same before and
after applying the changes.

   text    data     bss     dec     hex filename
   1312     100       4    1416     588 remoteproc/da8xx_remoteproc.o
   1312     100       4    1416     588 remoteproc/da8xx_remoteproc.o

    970     240       0    1210     4ba remoteproc/omap_remoteproc.o
   1002     192       0    1194     4aa remoteproc/omap_remoteproc.o

   1901     240       0    2141     85d remoteproc/st_remoteproc.o
   1933     192       0    2125     84d remoteproc/st_remoteproc.o

   1288      96       0    1384     568 remoteproc/st_slim_rproc.o
   1320      64       0    1384     568 remoteproc/st_slim_rproc.o

   2121     240       0    2361     939 remoteproc/wkup_m3_rproc.o
   2161     192       0    2353     931 remoteproc/wkup_m3_rproc.o

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
drivers/remoteproc/da8xx_remoteproc.c
drivers/remoteproc/omap_remoteproc.c
drivers/remoteproc/st_remoteproc.c
drivers/remoteproc/st_slim_rproc.c
drivers/remoteproc/wkup_m3_rproc.c

index 1afac8f31be07b3738bc622af46f4dac54a988a5..3814de28599c963699ed401c3af135c973027e22 100644 (file)
@@ -151,7 +151,7 @@ static void da8xx_rproc_kick(struct rproc *rproc, int vqid)
        writel(SYSCFG_CHIPSIG2, drproc->chipsig);
 }
 
-static struct rproc_ops da8xx_rproc_ops = {
+static const struct rproc_ops da8xx_rproc_ops = {
        .start = da8xx_rproc_start,
        .stop = da8xx_rproc_stop,
        .kick = da8xx_rproc_kick,
index fa63bf2eb885991b79e8b9a35425091e18460f66..a96ce9083f7faba98f460aa8cfdde8a6f55dd0d3 100644 (file)
@@ -177,7 +177,7 @@ static int omap_rproc_stop(struct rproc *rproc)
        return 0;
 }
 
-static struct rproc_ops omap_rproc_ops = {
+static const struct rproc_ops omap_rproc_ops = {
        .start          = omap_rproc_start,
        .stop           = omap_rproc_stop,
        .kick           = omap_rproc_kick,
index da4e152e97331fbed605887430dddbe22947c9ff..f21787b602e3ac9493f42d022cda55586f6ed6b7 100644 (file)
@@ -107,7 +107,7 @@ static int st_rproc_stop(struct rproc *rproc)
        return sw_err ?: pwr_err;
 }
 
-static struct rproc_ops st_rproc_ops = {
+static const struct rproc_ops st_rproc_ops = {
        .start          = st_rproc_start,
        .stop           = st_rproc_stop,
 };
index 507716c8721fd306f056e1a738e68edff6fdc546..6cfd862f945b48293620145e1bb5380e31ad26a7 100644 (file)
@@ -200,7 +200,7 @@ static void *slim_rproc_da_to_va(struct rproc *rproc, u64 da, int len)
        return va;
 }
 
-static struct rproc_ops slim_rproc_ops = {
+static const struct rproc_ops slim_rproc_ops = {
        .start          = slim_rproc_start,
        .stop           = slim_rproc_stop,
        .da_to_va       = slim_rproc_da_to_va,
index 18175d0331fd7121025ab634694d1359f0852c5a..1ada0e51fef61d26cbcb519443943b7b79b9bcc0 100644 (file)
@@ -111,7 +111,7 @@ static void *wkup_m3_rproc_da_to_va(struct rproc *rproc, u64 da, int len)
        return va;
 }
 
-static struct rproc_ops wkup_m3_rproc_ops = {
+static const struct rproc_ops wkup_m3_rproc_ops = {
        .start          = wkup_m3_rproc_start,
        .stop           = wkup_m3_rproc_stop,
        .da_to_va       = wkup_m3_rproc_da_to_va,