diff options
author | Lee Jones <lee.jones@linaro.org> | 2014-07-21 10:13:09 -0400 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2014-07-25 10:31:44 -0400 |
commit | d69d4212b821e60fa82d57564067bf73df057fd3 (patch) | |
tree | e59979675f93bb0b0d1b9b8ad23d96135529e441 /drivers/mfd | |
parent | d5ce79ff20914dd187c25d000b6a8a25a47d7ebe (diff) |
mfd: si476x-cmd: Remedy checkpatch style complains
This is part of an effort to clean-up the MFD subsystem.
WARNING: line over 80 characters
+ struct si476x_rsq_status_args *rsqargs,
WARNING: line over 80 characters
+ struct si476x_rsq_status_report *report)
WARNING: Unnecessary space before function pointer arguments
+ int (*power_up) (struct si476x_core *,
WARNING: Unnecessary space before function pointer arguments
+ int (*power_down) (struct si476x_core *,
total: 0 errors, 4 warnings, 1555 lines checked
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd')
-rw-r--r-- | drivers/mfd/si476x-cmd.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/mfd/si476x-cmd.c b/drivers/mfd/si476x-cmd.c index 6f1ef63086c9..2086b4665288 100644 --- a/drivers/mfd/si476x-cmd.c +++ b/drivers/mfd/si476x-cmd.c | |||
@@ -1228,8 +1228,8 @@ static int si476x_core_cmd_fm_rsq_status_a10(struct si476x_core *core, | |||
1228 | } | 1228 | } |
1229 | 1229 | ||
1230 | static int si476x_core_cmd_fm_rsq_status_a20(struct si476x_core *core, | 1230 | static int si476x_core_cmd_fm_rsq_status_a20(struct si476x_core *core, |
1231 | struct si476x_rsq_status_args *rsqargs, | 1231 | struct si476x_rsq_status_args *rsqargs, |
1232 | struct si476x_rsq_status_report *report) | 1232 | struct si476x_rsq_status_report *report) |
1233 | { | 1233 | { |
1234 | int err; | 1234 | int err; |
1235 | u8 resp[CMD_FM_RSQ_STATUS_A10_NRESP]; | 1235 | u8 resp[CMD_FM_RSQ_STATUS_A10_NRESP]; |
@@ -1434,10 +1434,10 @@ typedef int (*tune_freq_func_t) (struct si476x_core *core, | |||
1434 | struct si476x_tune_freq_args *tuneargs); | 1434 | struct si476x_tune_freq_args *tuneargs); |
1435 | 1435 | ||
1436 | static struct { | 1436 | static struct { |
1437 | int (*power_up) (struct si476x_core *, | 1437 | int (*power_up)(struct si476x_core *, |
1438 | struct si476x_power_up_args *); | 1438 | struct si476x_power_up_args *); |
1439 | int (*power_down) (struct si476x_core *, | 1439 | int (*power_down)(struct si476x_core *, |
1440 | struct si476x_power_down_args *); | 1440 | struct si476x_power_down_args *); |
1441 | 1441 | ||
1442 | tune_freq_func_t fm_tune_freq; | 1442 | tune_freq_func_t fm_tune_freq; |
1443 | tune_freq_func_t am_tune_freq; | 1443 | tune_freq_func_t am_tune_freq; |