Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1664415
| From | Arvind Yadav <arvind.yadav.cs@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] reset: zx2967: constify zx2967_reset_ops. |
| Date | 2017-06-13 07:00 +0200 |
| Message-ID | <tRM5P-3sH-5@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
File size before:
text data bss dec hex filename
794 232 0 1026 402 drivers/reset/reset-zx2967.o
File size After adding 'const':
text data bss dec hex filename
842 184 0 1026 402 drivers/reset/reset-zx2967.o
Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
---
drivers/reset/reset-zx2967.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/reset/reset-zx2967.c b/drivers/reset/reset-zx2967.c
index 4dabb9e..4f319f7 100644
--- a/drivers/reset/reset-zx2967.c
+++ b/drivers/reset/reset-zx2967.c
@@ -55,7 +55,7 @@ static int zx2967_reset_deassert(struct reset_controller_dev *rcdev,
return zx2967_reset_act(rcdev, id, false);
}
-static struct reset_control_ops zx2967_reset_ops = {
+static const struct reset_control_ops zx2967_reset_ops = {
.assert = zx2967_reset_assert,
.deassert = zx2967_reset_deassert,
};
--
1.9.1
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] reset: zx2967: constify zx2967_reset_ops. Arvind Yadav <arvind.yadav.cs@gmail.com> - 2017-06-13 07:00 +0200 Re: [PATCH] reset: zx2967: constify zx2967_reset_ops. Philipp Zabel <p.zabel@pengutronix.de> - 2017-06-19 14:20 +0200
csiph-web