gpio: mockup: Fix mode of debugfs files
commit 0a1bb16e0fe6650c3841e611de374bfd5578ad70 upstream. This driver's debugfs files have had a read operation since commit2a9e27408e
("gpio: mockup: rework debugfs interface"), but were still being created with write-only mode bits. Update them to indicate that the files can also be read. Signed-off-by: Zev Weiss <zev@bewilderbeest.net> Fixes:2a9e27408e
("gpio: mockup: rework debugfs interface") Cc: stable@kernel.org # v5.1+ Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
b49706d179
commit
63e12910b7
@ -368,7 +368,7 @@ static void gpio_mockup_debugfs_setup(struct device *dev,
|
|||||||
priv->offset = i;
|
priv->offset = i;
|
||||||
priv->desc = gpiochip_get_desc(gc, i);
|
priv->desc = gpiochip_get_desc(gc, i);
|
||||||
|
|
||||||
debugfs_create_file(name, 0200, chip->dbg_dir, priv,
|
debugfs_create_file(name, 0600, chip->dbg_dir, priv,
|
||||||
&gpio_mockup_debugfs_ops);
|
&gpio_mockup_debugfs_ops);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user