Commit 114a06ae authored by Marek Belisko's avatar Marek Belisko Committed by Greg Kroah-Hartman

staging: ft1000: Fix coding style in get_request_value() function.

Signed-off-by: default avatarMarek Belisko <marek.belisko@open-nandra.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent c3ed5d2f
...@@ -411,25 +411,21 @@ static long get_request_value(struct ft1000_device *ft1000dev) ...@@ -411,25 +411,21 @@ static long get_request_value(struct ft1000_device *ft1000dev)
u32 status; u32 status;
struct ft1000_info *pft1000info = netdev_priv(ft1000dev->net); struct ft1000_info *pft1000info = netdev_priv(ft1000dev->net);
if (pft1000info->bootmode == 1) {
if ( pft1000info->bootmode == 1) status = fix_ft1000_read_dpram32(ft1000dev,
{ DWNLD_MAG1_SIZE_LOC, (u8 *)&value);
status = fix_ft1000_read_dpram32(ft1000dev, DWNLD_MAG1_SIZE_LOC, (u8 *)&value);
value = ntohl(value); value = ntohl(value);
} } else {
else status = ft1000_read_dpram16(ft1000dev,
{ DWNLD_MAG1_SIZE_LOC, (u8 *)&tempword, 0);
status = ft1000_read_dpram16(ft1000dev, DWNLD_MAG1_SIZE_LOC, (u8 *)&tempword, 0);
value = tempword; value = tempword;
status = ft1000_read_dpram16(ft1000dev, DWNLD_MAG1_SIZE_LOC, (u8 *)&tempword, 1); status = ft1000_read_dpram16(ft1000dev,
DWNLD_MAG1_SIZE_LOC, (u8 *)&tempword, 1);
value |= (tempword << 16); value |= (tempword << 16);
value = ntohl(value); value = ntohl(value);
} }
//DEBUG("get_request_value: value is %x\n", value);
return value; return value;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment