From: H Hartley Sweeten Date: Tue, 6 Oct 2015 00:33:34 +0000 (-0700) Subject: staging: comedi: mpc624: change type of private data 'ai_speed' X-Git-Tag: KARO-TX6UL-2015-11-03~34^2~884 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=4403437e57c43c59c691a710a440d0924ed91b28;p=karo-tx-linux.git staging: comedi: mpc624: change type of private data 'ai_speed' For aesthetics, change the type of this member to unsigned int. Signed-off-by: H Hartley Sweeten Reviewed-by: Ian Abbott Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/comedi/drivers/mpc624.c b/drivers/staging/comedi/drivers/mpc624.c index c7913a3deaa8..826e4399c87e 100644 --- a/drivers/staging/comedi/drivers/mpc624.c +++ b/drivers/staging/comedi/drivers/mpc624.c @@ -93,7 +93,7 @@ #define MPC624_SPEED_6_875_HZ MPC624_OSR(0x1f) struct mpc624_private { - unsigned long int ai_speed; + unsigned int ai_speed; }; /* -------------------------------------------------------------------------- */