From: Alexander Koch Date: Sat, 16 Jan 2016 16:14:37 +0000 (+0100) Subject: iio: light: opt3001: trivial type refactoring X-Git-Tag: next-20160210~18^2~551^2~14 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=84e8d090c57522c5f8ae59f5b922bedb929165c7;p=karo-tx-linux.git iio: light: opt3001: trivial type refactoring Change variable type of struct opt3001 members 'ok_to_ignore_lock' and 'result_ready' uint16-bitfield of length one to bool. They are used as bool, let the compiler do the optimization. Signed-off-by: Alexander Koch Signed-off-by: Michael Hornung Tested-by: Andreas Dannenberg Signed-off-by: Jonathan Cameron --- diff --git a/drivers/iio/light/opt3001.c b/drivers/iio/light/opt3001.c index aefbd7989bda..b05c484a1646 100644 --- a/drivers/iio/light/opt3001.c +++ b/drivers/iio/light/opt3001.c @@ -79,8 +79,8 @@ struct opt3001 { struct device *dev; struct mutex lock; - u16 ok_to_ignore_lock:1; - u16 result_ready:1; + bool ok_to_ignore_lock; + bool result_ready; wait_queue_head_t result_ready_queue; u16 result;