- 17 9月, 2011 40 次提交
-
-
由 Roland Vossen 提交于
Structure that is sent to the dongle has been annotated. Reported-by: NJohannes Berg <johannes@sipsolutions.net> Reviewed-by: NArend van Spriel <arend@broadcom.com> Reviewed-by: NFranky Lin <frankyl@broadcom.com> Signed-off-by: NFranky Lin <frankyl@broadcom.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Roland Vossen 提交于
Structure that is sent to the dongle has been annotated. Reported-by: NJohannes Berg <johannes@sipsolutions.net> Reviewed-by: NArend van Spriel <arend@broadcom.com> Reviewed-by: NFranky Lin <frankyl@broadcom.com> Signed-off-by: NFranky Lin <frankyl@broadcom.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Roland Vossen 提交于
Structures that are sent to the dongle have been annotated. Reported-by: NJohannes Berg <johannes@sipsolutions.net> Reviewed-by: NArend van Spriel <arend@broadcom.com> Reviewed-by: NFranky Lin <frankyl@broadcom.com> Signed-off-by: NFranky Lin <frankyl@broadcom.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Roland Vossen 提交于
Three structures that are sent to the dongle have been annotated for correct endianness: struct brcmf_iscan_params, brcmf_scan_params, brcmf_cfg80211_scan_req. Reported-by: NJohannes Berg <johannes@sipsolutions.net> Reviewed-by: NArend van Spriel <arend@broadcom.com> Reviewed-by: NFranky Lin <frankyl@broadcom.com> Signed-off-by: NFranky Lin <frankyl@broadcom.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Roland Vossen 提交于
brcmf_dev_ioctl() does not provide a user space buffer to brcmf_netdev_ioctl_priv. Hence these calls are not necessary. Reported-by: NJohannes Berg <johannes@sipsolutions.net> Reviewed-by: NArend van Spriel <arend@broadcom.com> Reviewed-by: NFranky Lin <frankyl@broadcom.com> Signed-off-by: NFranky Lin <frankyl@broadcom.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Roland Vossen 提交于
Removed a function parameter since it was redundant. Reviewed-by: NArend van Spriel <arend@broadcom.com> Reviewed-by: NFranky Lin <frankyl@broadcom.com> Signed-off-by: NFranky Lin <frankyl@broadcom.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Franky Lin 提交于
Remove unnecessary global variable Reviewed-by: NRoland Vossen <rvossen@broadcom.com> Reviewed-by: NArend van Spriel <arend@broadcom.com> Signed-off-by: NFranky Lin <frankyl@broadcom.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Franky Lin 提交于
Remove unnecessary global variable Reviewed-by: NRoland Vossen <rvossen@broadcom.com> Reviewed-by: NArend van Spriel <arend@broadcom.com> Signed-off-by: NFranky Lin <frankyl@broadcom.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Franky Lin 提交于
Use constant values for packet filter configuration Reported-by: NJohannes Berg <johannes@sipsolutions.net> Reviewed-by: NRoland Vossen <rvossen@broadcom.com> Reviewed-by: NArend van Spriel <arend@broadcom.com> Signed-off-by: NFranky Lin <frankyl@broadcom.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Franky Lin 提交于
Remove brcmf_deferred_tx as it should be always 1 Reported-by: NJohannes Berg <johannes@sipsolutions.net> Reviewed-by: NRoland Vossen <rvossen@broadcom.com> Reviewed-by: NArend van Spriel <arend@broadcom.com> Signed-off-by: NFranky Lin <frankyl@broadcom.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Franky Lin 提交于
Replaced the global variable with macro. Reported-by: NJohannes Berg <johannes@sipsolutions.net> Reviewed-by: NRoland Vossen <rvossen@broadcom.com> Reviewed-by: NArend van Spriel <arend@broadcom.com> Signed-off-by: NFranky Lin <frankyl@broadcom.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Franky Lin 提交于
Dead code removal. Reviewed-by: NRoland Vossen <rvossen@broadcom.com> Reviewed-by: NArend van Spriel <arend@broadcom.com> Signed-off-by: NFranky Lin <frankyl@broadcom.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Julia Lawall 提交于
Sizeof a pointer-typed expression returns the size of the pointer, not that of the pointed data. The semantic patch that fixes this problem is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ expression *e; type T; identifier f; @@ f(...,(T)e,..., -sizeof(e) +sizeof(*e) ,...) // </smpl> Signed-off-by: NJulia Lawall <julia@diku.dk> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Leonid V. Fedorenchik 提交于
Fix long function prototypes and line up arguments nicely. Signed-off-by: NLeonid V. Fedorenchik <leonidsbox@gmail.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Leonid V. Fedorenchik 提交于
Fix indent of function arguments. Signed-off-by: NLeonid V. Fedorenchik <leonidsbox@gmail.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Leonid V. Fedorenchik 提交于
Line up integer constant with others. Signed-off-by: NLeonid V. Fedorenchik <leonidsbox@gmail.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Leonid V. Fedorenchik 提交于
Replace :? operator by equivalent if-else statement where in improves readability. Don't add else branch if it is not needed. Signed-off-by: NLeonid V. Fedorenchik <leonidsbox@gmail.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Leonid V. Fedorenchik 提交于
Delete braces around single statements. Signed-off-by: NLeonid V. Fedorenchik <leonidsbox@gmail.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Leonid V. Fedorenchik 提交于
Change indent with spaces to tabs. Signed-off-by: NLeonid V. Fedorenchik <leonidsbox@gmail.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Leonid V. Fedorenchik 提交于
Change indent with spaces to tabs. Signed-off-by: NLeonid V. Fedorenchik <leonidsbox@gmail.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Leonid V. Fedorenchik 提交于
Change indent with spaces to tabs. Signed-off-by: NLeonid V. Fedorenchik <leonidsbox@gmail.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Leonid V. Fedorenchik 提交于
Change indent with spaces to tabs. Signed-off-by: NLeonid V. Fedorenchik <leonidsbox@gmail.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Leonid V. Fedorenchik 提交于
Change indent with spaces to tabs. Signed-off-by: NLeonid V. Fedorenchik <leonidsbox@gmail.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Leonid V. Fedorenchik 提交于
Change indent with spaces to tabs. Signed-off-by: NLeonid V. Fedorenchik <leonidsbox@gmail.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Leonid V. Fedorenchik 提交于
Change indent with spaces to tabs. Signed-off-by: NLeonid V. Fedorenchik <leonidsbox@gmail.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Leonid V. Fedorenchik 提交于
Change indent with spaces to tabs. Signed-off-by: NLeonid V. Fedorenchik <leonidsbox@gmail.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Leonid V. Fedorenchik 提交于
Change indent with spaces to tabs. Signed-off-by: NLeonid V. Fedorenchik <leonidsbox@gmail.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Leonid V. Fedorenchik 提交于
Change indent with spaces to tabs. Signed-off-by: NLeonid V. Fedorenchik <leonidsbox@gmail.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Leonid V. Fedorenchik 提交于
Change indent with spaces to tabs. Signed-off-by: NLeonid V. Fedorenchik <leonidsbox@gmail.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Leonid V. Fedorenchik 提交于
Change indent with spaces to tabs. Signed-off-by: NLeonid V. Fedorenchik <leonidsbox@gmail.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Leonid V. Fedorenchik 提交于
Change indent with spaces to tabs. Signed-off-by: NLeonid V. Fedorenchik <leonidsbox@gmail.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Leonid V. Fedorenchik 提交于
Change indent with spaces to tabs. Signed-off-by: NLeonid V. Fedorenchik <leonidsbox@gmail.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Leonid V. Fedorenchik 提交于
Change indent with spaces to tabs. Signed-off-by: NLeonid V. Fedorenchik <leonidsbox@gmail.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Leonid V. Fedorenchik 提交于
Change indent with spaces to tabs. Signed-off-by: NLeonid V. Fedorenchik <leonidsbox@gmail.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Leonid V. Fedorenchik 提交于
Change indent with spaces to tabs. Signed-off-by: NLeonid V. Fedorenchik <leonidsbox@gmail.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Leonid V. Fedorenchik 提交于
Change indent with spaces to tabs. Signed-off-by: NLeonid V. Fedorenchik <leonidsbox@gmail.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Leonid V. Fedorenchik 提交于
Change indent with spaces to tabs. Signed-off-by: NLeonid V. Fedorenchik <leonidsbox@gmail.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Leonid V. Fedorenchik 提交于
Change indent with spaces to tabs. Signed-off-by: NLeonid V. Fedorenchik <leonidsbox@gmail.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Leonid V. Fedorenchik 提交于
Change indent with spaces to tabs. Signed-off-by: NLeonid V. Fedorenchik <leonidsbox@gmail.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-
由 Leonid V. Fedorenchik 提交于
Change indent with spaces to tabs. Signed-off-by: NLeonid V. Fedorenchik <leonidsbox@gmail.com> Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
-