diff options
author | Bhumika Goyal <bhumirks@gmail.com> | 2017-01-05 13:00:43 +0530 |
---|---|---|
committer | Jassi Brar <jaswinder.singh@linaro.org> | 2017-03-28 23:27:32 +0530 |
commit | 8ce33c6ff375b59bfa0a347782c49da94e64bb85 (patch) | |
tree | cab380fb148cd80e94e0207416af82b9cd45b408 /drivers/parisc/iommu-helpers.h | |
parent | ad0376eb1483bd9880770b346f6592aece669e4c (diff) | |
download | talos-obmc-linux-8ce33c6ff375b59bfa0a347782c49da94e64bb85.tar.gz talos-obmc-linux-8ce33c6ff375b59bfa0a347782c49da94e64bb85.zip |
mailbox: constify mbox_chan_ops structures
Check for mbox_chan_ops structures that are only stored in the ops field
of a mbox_controller structure. This field is of type const struct
mbox_chan_ops *, so mbox_chan_ops structures having this property can be
declared as const.
Done using Coccinelle:
@r1 disable optional_qualifier @
identifier i;
position p;
@@
struct mbox_chan_ops i@p = {...};
@ok1@
identifier r1.i;
struct hi6220_mbox mbox;
struct slimpro_mbox ctx;
position p;
@@
(
mbox.controller.ops=&i@p
|
ctx.mb_ctrl.ops=&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 mbox_chan_ops i;
File size details:
text data bss dec hex filename
2310 248 0 2558 9fe drivers/mailbox/hi6220-mailbox.o
2366 192 0 2558 9fe drivers/mailbox/hi6220-mailbox.o
1500 248 0 1748 6d4 mailbox/mailbox-xgene-slimpro.o
1556 192 0 1748 6d4 mailbox/mailbox-xgene-slimpro.o
Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>
Diffstat (limited to 'drivers/parisc/iommu-helpers.h')
0 files changed, 0 insertions, 0 deletions