diff options
author | Javier Martinez Canillas <javier@osg.samsung.com> | 2015-09-29 14:26:05 +0300 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2015-10-30 20:19:44 +0300 |
commit | b158b69a37651b20a0e68f89cf118461e7de4872 (patch) | |
tree | 1f3a793ce241a7d19bb9444c39d9b93bae2d0e1e /drivers/mfd/rtsx_pcr.c | |
parent | d8498df1e40e5a232ebe1f1b33edb34887f6a037 (diff) | |
download | linux-b158b69a37651b20a0e68f89cf118461e7de4872.tar.xz |
mfd: rtsx: Simplify function return logic
The invoked functions already return zero on success or a negative
errno code so there is no need to open code the logic in the caller.
Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/rtsx_pcr.c')
-rw-r--r-- | drivers/mfd/rtsx_pcr.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/mfd/rtsx_pcr.c b/drivers/mfd/rtsx_pcr.c index a66540a49079..b98cf1de0a55 100644 --- a/drivers/mfd/rtsx_pcr.c +++ b/drivers/mfd/rtsx_pcr.c @@ -571,11 +571,7 @@ static int rtsx_pci_set_pull_ctl(struct rtsx_pcr *pcr, const u32 *tbl) tbl++; } - err = rtsx_pci_send_cmd(pcr, 100); - if (err < 0) - return err; - - return 0; + return rtsx_pci_send_cmd(pcr, 100); } int rtsx_pci_card_pull_ctl_enable(struct rtsx_pcr *pcr, int card) |