mirror of
https://github.com/torvalds/linux.git
synced 2026-06-04 20:46:48 +02:00
i2c: isch: Prefer to use octal permission
Octal permissions are preferred over the symbolics ones for readbility. This ceases warning message pointed by checkpatch. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Andi Shyti <andi.shyti@kernel.org>
This commit is contained in:
parent
f7c6153f61
commit
e1d9e16c39
|
|
@ -49,7 +49,7 @@ struct sch_i2c {
|
|||
};
|
||||
|
||||
static int backbone_speed = 33000; /* backbone speed in kHz */
|
||||
module_param(backbone_speed, int, S_IRUSR | S_IWUSR);
|
||||
module_param(backbone_speed, int, 0600);
|
||||
MODULE_PARM_DESC(backbone_speed, "Backbone speed in kHz, (default = 33000)");
|
||||
|
||||
static inline u8 sch_io_rd8(struct sch_i2c *priv, unsigned int offset)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user