diff options
author | Melike Yurtoglu <aysemelikeyurtoglu@gmail.com> | 2014-10-01 00:31:06 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-10-02 10:07:04 -0700 |
commit | 4dae2a4fcafcbea0f5787e2dcab2ec808f21e29d (patch) | |
tree | 1aa3036df923ba78d5e823217a74ab47371e927e /drivers/staging/rts5208 | |
parent | bb0f20a7e871743380b2cbaaf35281775567e88c (diff) |
staging: rts5208: Remove unneeded void return
Fixes "void function return statements are not generally
useful"checkpatch.pl warning
Signed-off-by: Melike Yurtoglu <aysemelikeyurtoglu@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rts5208')
-rw-r--r-- | drivers/staging/rts5208/rtsx_chip.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/staging/rts5208/rtsx_chip.c b/drivers/staging/rts5208/rtsx_chip.c index 14114713212..a7ade8b4e7f 100644 --- a/drivers/staging/rts5208/rtsx_chip.c +++ b/drivers/staging/rts5208/rtsx_chip.c @@ -1823,8 +1823,6 @@ void rtsx_enable_aspm(struct rtsx_chip *chip) } } } - - return; } void rtsx_disable_aspm(struct rtsx_chip *chip) @@ -1848,8 +1846,6 @@ void rtsx_disable_aspm(struct rtsx_chip *chip) wait_timeout(1); } } - - return; } int rtsx_read_ppbuf(struct rtsx_chip *chip, u8 *buf, int buf_len) |