]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commit
USB: gadget: change simple_strtol to simple_strtoul
authorJulia Lawall <julia@diku.dk>
Tue, 25 Nov 2008 13:15:19 +0000 (14:15 +0100)
committerGreg Kroah-Hartman <gregkh@suse.de>
Wed, 7 Jan 2009 17:59:58 +0000 (09:59 -0800)
commitbb9496c6f7e853e5d4edd5397c9d45f1968d623c
tree300b2fd2c3b2d4cf593eca3d773c6a70a40c8d64
parent785895ff1fedddd09576d2c600d90404fef6506c
USB: gadget: change simple_strtol to simple_strtoul

Since num is unsigned, it would seem better to use simple_strtoul that
simple_strtol.

A simplified version of the semantic patch that makes this change is as
follows: (http://www.emn.fr/x-info/coccinelle/)

// <smpl>
@r2@
long e;
position p;
@@

e = simple_strtol@p(...)

@@
position p != r2.p;
type T;
T e;
@@

e =
- simple_strtol@p
+ simple_strtoul
  (...)
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Acked-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/usb/gadget/epautoconf.c