staging: dgnc: replace unnecessary while() with if()
authorDaeseok Youn <daeseok.youn@gmail.com>
Tue, 11 Mar 2014 03:19:06 +0000 (12:19 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 17 Mar 2014 21:37:46 +0000 (14:37 -0700)
It doesn't need to use while loop for getting newrate,
because it always breaks out the end of while loop with
"break". So just replace while with if.

And the type of newrate is "unsigned int", this type
is never less than zero. If it can be set to negative value by
user application with ioctl(), it is not zero but it
can be a unexpected value for setting custom baudrate.

Also smatch says:
drivers/staging/dgnc/dgnc_tty.c:967 dgnc_set_custom_speed() warn:
 unsigned 'newrate' is never less than zero.
drivers/staging/dgnc/dgnc_tty.c:981 dgnc_set_custom_speed() info:
 ignoring unreachable code.

Signed-off-by: Daeseok Youn <daeseok.youn@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/dgnc/dgnc_tty.c

index a6c6aba82d724d1f6a97029a39e83de385366337..199b9d7f3a385216b36ee09e09ee401142a3ba69 100644 (file)
@@ -964,8 +964,10 @@ static void dgnc_set_custom_speed(struct channel_t *ch, uint newrate)
        int deltahigh;
        int deltalow;
 
-       if (newrate < 0)
-               newrate = 0;
+       if (newrate <= 0) {
+               ch->ch_custom_speed = 0;
+               return;
+       }
 
        /*
         *  Since the divisor is stored in a 16-bit integer, we make sure
@@ -978,7 +980,7 @@ static void dgnc_set_custom_speed(struct channel_t *ch, uint newrate)
        if (newrate && newrate > ch->ch_bd->bd_dividend)
                newrate = ch->ch_bd->bd_dividend;
 
-       while (newrate > 0) {
+       if (newrate > 0) {
                testdiv = ch->ch_bd->bd_dividend / newrate;
 
                /*
@@ -995,28 +997,23 @@ static void dgnc_set_custom_speed(struct channel_t *ch, uint newrate)
                 *  If the rate for the requested divisor is correct, just
                 *  use it and be done.
                 */
-               if (testrate_high == newrate )
-                       break;
-
-               /*
-                *  Otherwise, pick the rate that is closer (i.e. whichever rate
-                *  has a smaller delta).
-                */
-               deltahigh = testrate_high - newrate;
-               deltalow = newrate - testrate_low;
+               if (testrate_high != newrate) {
+                       /*
+                        *  Otherwise, pick the rate that is closer (i.e. whichever rate
+                        *  has a smaller delta).
+                        */
+                       deltahigh = testrate_high - newrate;
+                       deltalow = newrate - testrate_low;
 
-               if (deltahigh < deltalow) {
-                       newrate = testrate_high;
-               } else {
-                       newrate = testrate_low;
+                       if (deltahigh < deltalow) {
+                               newrate = testrate_high;
+                       } else {
+                               newrate = testrate_low;
+                       }
                }
-
-               break;
        }
 
        ch->ch_custom_speed = newrate;
-
-       return;
 }
 
 
@@ -3316,10 +3313,10 @@ static int dgnc_tty_ioctl(struct tty_struct *tty, unsigned int cmd,
 
        case DIGI_SETCUSTOMBAUD:
        {
-               uint new_rate;
+               int new_rate;
                /* Let go of locks when accessing user space, could sleep */
                DGNC_UNLOCK(ch->ch_lock, lock_flags);
-               rc = get_user(new_rate, (unsigned int __user *) arg);
+               rc = get_user(new_rate, (int __user *) arg);
                if (rc)
                        return rc;
                DGNC_LOCK(ch->ch_lock, lock_flags);