summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorBhumika Goyal <bhumirks@gmail.com>2016-02-26 11:04:32 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-03-05 23:48:04 +0100
commit6c6baa841662e1ab46353fee3c618d9f347ce06e (patch)
treebb60440e05c1c7c798411e5f4bb760fdfc8edcbe /drivers
parentstaging: gdm724x: gdm_usb: Remove create_workqueue() (diff)
downloadlinux-6c6baa841662e1ab46353fee3c618d9f347ce06e.tar.xz
linux-6c6baa841662e1ab46353fee3c618d9f347ce06e.zip
Staging: gdm724x: Use min instead of ternary operator
This patch replaces ternary operator with macro min as it shorter and thus increases code readability. Macro min return the minimum of the two compared values. Made a semantic patch for changes: @@ type T; T x; T y; @@ ( - x < y ? x : y + min(x,y) | - x > y ? x : y + max(x,y) ) Signed-off-by: Bhumika Goyal <bhumirks@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/staging/gdm724x/gdm_mux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/gdm724x/gdm_mux.c b/drivers/staging/gdm724x/gdm_mux.c
index 937010b3a603..6bedd668324c 100644
--- a/drivers/staging/gdm724x/gdm_mux.c
+++ b/drivers/staging/gdm724x/gdm_mux.c
@@ -433,7 +433,7 @@ static int gdm_mux_send_control(void *priv_dev, int request, int value,
if (ret < 0)
pr_err("usb_control_msg error: %d\n", ret);
- return ret < 0 ? ret : 0;
+ return min(ret, 0);
}
static void release_usb(struct mux_dev *mux_dev)