projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e4839d3
)
staging: wilc1000: rename bIsEnabled of struct power_mgmt_param
author
Leo Kim
<
[email protected]
>
Tue, 13 Oct 2015 11:02:07 +0000
(20:02 +0900)
committer
Greg Kroah-Hartman
<
[email protected]
>
Tue, 13 Oct 2015 17:01:53 +0000
(10:01 -0700)
This patch renames bIsEnabled of struct power_mgmt_param to enabled to
avoid CamelCase naming convention.
Signed-off-by: Leo Kim <
[email protected]
>
Signed-off-by: Tony Cho <
[email protected]
>
Signed-off-by: Greg Kroah-Hartman <
[email protected]
>
drivers/staging/wilc1000/host_interface.c
patch
|
blob
|
history
diff --git
a/drivers/staging/wilc1000/host_interface.c
b/drivers/staging/wilc1000/host_interface.c
index 4f7ebdc0abec553e2f01f80f5ca28baf3e499e15..0c44fd03f00e864e5f0bc1b4d62d5357f490674c 100644
(file)
--- a/
drivers/staging/wilc1000/host_interface.c
+++ b/
drivers/staging/wilc1000/host_interface.c
@@
-154,8
+154,7
@@
struct del_sta {
};
struct power_mgmt_param {
-
- bool bIsEnabled;
+ bool enabled;
u32 u32Timeout;
};
@@
-2763,7
+2762,7
@@
static void Handle_PowerManagement(struct host_if_drv *hif_drv,
strWID.id = (u16)WID_POWER_MANAGEMENT;
- if (strPowerMgmtParam->
bIsE
nabled == true)
+ if (strPowerMgmtParam->
e
nabled == true)
s8PowerMode = MIN_FAST_PS;
else
s8PowerMode = NO_POWERSAVE;
@@
-4881,7
+4880,7
@@
s32 host_int_set_power_mgmt(struct host_if_drv *hif_drv,
msg.id = HOST_IF_MSG_POWER_MGMT;
msg.drv = hif_drv;
- pstrPowerMgmtParam->
bIsE
nabled = bIsEnabled;
+ pstrPowerMgmtParam->
e
nabled = bIsEnabled;
pstrPowerMgmtParam->u32Timeout = u32Timeout;