Skip to content

Commit

Permalink
Staging: samsung-laptop: fix up brace coding style issues
Browse files Browse the repository at this point in the history
These were introduced with the patch, "staging: samsung-laptop: Extend
samsung-laptop platform driver to support another flavor of its platform
BIOS."

Cc: Ingmar Steen <iksteen@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Greg Kroah-Hartman committed Feb 9, 2011
1 parent 27f55e9 commit 3e55eb3
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions drivers/staging/samsung-laptop/samsung-laptop.c
Original file line number Diff line number Diff line change
Expand Up @@ -448,8 +448,7 @@ static ssize_t get_performance_level(struct device *dev,
return retval;

/* The logic is backwards, yeah, lots of fun... */
for (pLevel = 0; sabi_config->performance_levels[pLevel].name; ++pLevel)
{
for (pLevel = 0; sabi_config->performance_levels[pLevel].name; ++pLevel) {
if (sretval.retval[0] == sabi_config->performance_levels[pLevel].value)
return sprintf(buf, "%s\n", sabi_config->performance_levels[pLevel].name);
}
Expand All @@ -462,12 +461,10 @@ static ssize_t set_performance_level(struct device *dev,
{
if (count >= 1) {
int pLevel;
for (pLevel = 0; sabi_config->performance_levels[pLevel].name; ++pLevel)
{
for (pLevel = 0; sabi_config->performance_levels[pLevel].name; ++pLevel) {
struct sabi_performance_level *level =
&sabi_config->performance_levels[pLevel];
if (!strncasecmp(level->name, buf, strlen(level->name)))
{
if (!strncasecmp(level->name, buf, strlen(level->name))) {
sabi_set_command(sabi_config->commands.set_performance_level,
level->value);
break;
Expand Down Expand Up @@ -564,8 +561,7 @@ static int __init samsung_init(void)
}

/* Try to find one of the signatures in memory to find the header */
for (pConfig = 0; sabi_configs[pConfig].test_string != 0; ++pConfig)
{
for (pConfig = 0; sabi_configs[pConfig].test_string != 0; ++pConfig) {
sabi_config = &sabi_configs[pConfig];
loca = find_signature(f0000_segment, sabi_config->test_string);
if (loca != 0xffff)
Expand Down Expand Up @@ -619,8 +615,7 @@ static int __init samsung_init(void)
}

/* Turn on "Linux" mode in the BIOS */
if (sabi_config->commands.set_linux != 0xff)
{
if (sabi_config->commands.set_linux != 0xff) {
retval = sabi_set_command(sabi_config->commands.set_linux, 0x81);
if (retval) {
printk(KERN_ERR KBUILD_MODNAME ": Linux mode was not set!\n");
Expand Down

0 comments on commit 3e55eb3

Please sign in to comment.