diff options
| author | Ralf Baechle <ralf@linux-mips.org> | 2014-10-21 08:12:49 -0400 |
|---|---|---|
| committer | Ralf Baechle <ralf@linux-mips.org> | 2014-11-24 01:44:49 -0500 |
| commit | 635c99070600ff04b4c1d5afe67f051631a8397c (patch) | |
| tree | 1ce0df0757aeebf58adb202d63a1525ff16abfd6 /arch/mips/pmcs-msp71xx | |
| parent | 5d01410fe4d92081f349b013a2e7a95429e4f2c9 (diff) | |
MIPS: Remove useless parentheses
Based on the spatch
@@
expression e;
@@
- return (e);
+ return e;
with heavy hand editing because some of the changes are either whitespace
or identation only or result in excessivly long lines.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/pmcs-msp71xx')
| -rw-r--r-- | arch/mips/pmcs-msp71xx/msp_prom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/pmcs-msp71xx/msp_prom.c b/arch/mips/pmcs-msp71xx/msp_prom.c index 1c9897531660..ef620a4c82a5 100644 --- a/arch/mips/pmcs-msp71xx/msp_prom.c +++ b/arch/mips/pmcs-msp71xx/msp_prom.c | |||
| @@ -295,7 +295,7 @@ char *prom_getenv(char *env_name) | |||
| 295 | 295 | ||
| 296 | while (*var) { | 296 | while (*var) { |
| 297 | if (strncmp(env_name, *var, i) == 0) { | 297 | if (strncmp(env_name, *var, i) == 0) { |
| 298 | return (*var + strlen(env_name) + 1); | 298 | return *var + strlen(env_name) + 1; |
| 299 | } | 299 | } |
| 300 | var++; | 300 | var++; |
| 301 | } | 301 | } |
