diff options
author | rishabh hardas <rishabheudyptula@gmail.com> | 2017-01-07 16:21:36 +0530 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2017-01-07 11:59:55 -0500 |
commit | 04e917305d6a82a18c73047adfe2273718013ee8 (patch) | |
tree | efceb4bd52df70c48360d0bfa62f99e2cae8d648 | |
parent | 0e377f3b9ae936aefe5aaca4c2e2546d57b63df7 (diff) |
iio:trigger: Fix coding style in iio-trig-bfin-timer.c by aligning parameters with opening bracket.
Fixes a warning flagged by checkpatch.pl
Signed-off-by: rishabh hardas <rishabheudyptula@gmail.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
-rw-r--r-- | drivers/staging/iio/trigger/iio-trig-bfin-timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/iio/trigger/iio-trig-bfin-timer.c b/drivers/staging/iio/trigger/iio-trig-bfin-timer.c index 38dca69a06eb..9658f2097c95 100644 --- a/drivers/staging/iio/trigger/iio-trig-bfin-timer.c +++ b/drivers/staging/iio/trigger/iio-trig-bfin-timer.c @@ -133,7 +133,7 @@ static ssize_t iio_bfin_tmr_frequency_show(struct device *dev, return sprintf(buf, "%lu\n", val); } -static DEVICE_ATTR(frequency, S_IRUGO | S_IWUSR, iio_bfin_tmr_frequency_show, +static DEVICE_ATTR(frequency, 0644, iio_bfin_tmr_frequency_show, iio_bfin_tmr_frequency_store); static struct attribute *iio_bfin_tmr_trigger_attrs[] = { |