Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1453851 > unrolled thread
| Started by | Baole Ni <baolex.ni@intel.com> |
|---|---|
| First post | 2016-08-02 13:40 +0200 |
| Last post | 2016-08-10 22:30 +0200 |
| Articles | 4 — 4 participants |
Back to article view | Back to linux.kernel
[PATCH 0244/1285] Replace numeric parameter like 0444 with macro Baole Ni <baolex.ni@intel.com> - 2016-08-02 13:40 +0200
Re: [PATCH 0244/1285] Replace numeric parameter like 0444 with macro Wolfram Sang <wsa@the-dreams.de> - 2016-08-10 20:10 +0200
Re: [PATCH 0244/1285] Replace numeric parameter like 0444 with macro Arnd Bergmann <arnd@arndb.de> - 2016-08-10 21:10 +0200
Re: [PATCH 0244/1285] Replace numeric parameter like 0444 with macro Linus Walleij <linus.walleij@linaro.org> - 2016-08-10 22:30 +0200
| From | Baole Ni <baolex.ni@intel.com> |
|---|---|
| Date | 2016-08-02 13:40 +0200 |
| Subject | [PATCH 0244/1285] Replace numeric parameter like 0444 with macro |
| Message-ID | <s1Gdd-3Oh-55@gated-at.bofh.it> |
I find that the developers often just specified the numeric value
when calling a macro which is defined with a parameter for access permission.
As we know, these numeric value for access permission have had the corresponding macro,
and that using macro can improve the robustness and readability of the code,
thus, I suggest replacing the numeric parameter with the macro.
Signed-off-by: Chuansheng Liu <chuansheng.liu@intel.com>
Signed-off-by: Baole Ni <baolex.ni@intel.com>
---
drivers/i2c/busses/i2c-stu300.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/i2c/busses/i2c-stu300.c b/drivers/i2c/busses/i2c-stu300.c
index 460c134..8128e25 100644
--- a/drivers/i2c/busses/i2c-stu300.c
+++ b/drivers/i2c/busses/i2c-stu300.c
@@ -133,7 +133,7 @@ enum stu300_error {
/* I2C clock speed, in Hz 0-400kHz*/
static unsigned int scl_frequency = 100000;
-module_param(scl_frequency, uint, 0644);
+module_param(scl_frequency, uint, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
/**
* struct stu300_dev - the stu300 driver state holder
--
2.9.2
[toc] | [next] | [standalone]
| From | Wolfram Sang <wsa@the-dreams.de> |
|---|---|
| Date | 2016-08-10 20:10 +0200 |
| Message-ID | <s4G6Z-8uN-15@gated-at.bofh.it> |
| In reply to | #1453851 |
[Multipart message — attachments visible in raw view] — view raw
> > I assume Wolfram will merge this. > > I assume not, see http://lwn.net/Articles/696227/ Thanks for the pointer. I missed the discussion but came up with the same conclusions: a) octals are easier to read and b) original author should have asked if this change was feasible before posting 1285 patches :(
[toc] | [prev] | [next] | [standalone]
| From | Arnd Bergmann <arnd@arndb.de> |
|---|---|
| Date | 2016-08-10 21:10 +0200 |
| Message-ID | <s4G6Z-8uN-19@gated-at.bofh.it> |
| In reply to | #1453851 |
On Wednesday, August 10, 2016 3:02:05 PM CEST Linus Walleij wrote: > On Tue, Aug 2, 2016 at 12:52 PM, Baole Ni <baolex.ni@intel.com> wrote: > > > I find that the developers often just specified the numeric value > > when calling a macro which is defined with a parameter for access permission. > > As we know, these numeric value for access permission have had the corresponding macro, > > and that using macro can improve the robustness and readability of the code, > > thus, I suggest replacing the numeric parameter with the macro. > > > > Signed-off-by: Chuansheng Liu <chuansheng.liu@intel.com> > > Signed-off-by: Baole Ni <baolex.ni@intel.com> > > Acked-by: Linus Walleij <linus.walleij@linaro.org> > > I assume Wolfram will merge this. I assume not, see http://lwn.net/Articles/696227/ Arnd
[toc] | [prev] | [next] | [standalone]
| From | Linus Walleij <linus.walleij@linaro.org> |
|---|---|
| Date | 2016-08-10 22:30 +0200 |
| Message-ID | <s4G6Z-8uN-17@gated-at.bofh.it> |
| In reply to | #1453851 |
On Tue, Aug 2, 2016 at 12:52 PM, Baole Ni <baolex.ni@intel.com> wrote: > I find that the developers often just specified the numeric value > when calling a macro which is defined with a parameter for access permission. > As we know, these numeric value for access permission have had the corresponding macro, > and that using macro can improve the robustness and readability of the code, > thus, I suggest replacing the numeric parameter with the macro. > > Signed-off-by: Chuansheng Liu <chuansheng.liu@intel.com> > Signed-off-by: Baole Ni <baolex.ni@intel.com> Acked-by: Linus Walleij <linus.walleij@linaro.org> I assume Wolfram will merge this. Yours, Linus Walleij
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web