diff options
| author | Catalina Mocanu <[email protected]> | 2014-09-27 13:03:16 -0700 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2014-09-28 22:35:10 -0400 |
| commit | 1cc3cacf10a6a1d430e9ed2cc0fed4a0b52bdf97 (patch) | |
| tree | 33d3a51f45e3baa50c042a3ee6511a2639740b6b | |
| parent | 18eaddefd4d156291b5a3dcc336778b67d98b531 (diff) | |
staging: rtl8192ee: remove unnecessary return statement
This fixes the following checkpatch.pl warning:
WARNING: void function return statements are not generally useful
Signed-off-by: Catalina Mocanu <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
| -rw-r--r-- | drivers/staging/rtl8192ee/regd.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/staging/rtl8192ee/regd.c b/drivers/staging/rtl8192ee/regd.c index 58b1d9f4717a..b47e4d514571 100644 --- a/drivers/staging/rtl8192ee/regd.c +++ b/drivers/staging/rtl8192ee/regd.c @@ -291,7 +291,6 @@ static void _rtl_reg_apply_world_flags(struct wiphy *wiphy, { _rtl_reg_apply_beaconing_flags(wiphy, initiator); _rtl_reg_apply_active_scan_flags(wiphy, initiator); - return; } static void _rtl_dump_channel_map(struct wiphy *wiphy) |