lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Sun, 25 Dec 2016 13:41:06 -0600 From: Scott Matheina <scott@...heina.com> To: linux-kernel@...r.kernel.org Cc: Scott Matheina <scott@...heina.com>, Lars-Peter Clausen <lars@...afoo.de>, Michael Hennerich <Michael.Hennerich@...log.com>, Jonathan Cameron <jic23@...nel.org>, Hartmut Knaack <knaack.h@....de>, Peter Meerwald-Stadler <pmeerw@...erw.net>, Greg Kroah-Hartman <gregkh@...uxfoundation.org>, linux-iio@...r.kernel.org, devel@...verdev.osuosl.org Subject: [PATCHv4 2/8] Fixed variables not being consistently lower case Across the file, variables were sometimes upper case, some times lower case, this fix addresses a few of the instances with this inconsistency. Signed-off-by: Scott Matheina <scott@...heina.com> --- drivers/staging/iio/addac/adt7316.c | 48 ++++++++++++++++++------------------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/drivers/staging/iio/addac/adt7316.c b/drivers/staging/iio/addac/adt7316.c index 08413a8..13d9ed2 100644 --- a/drivers/staging/iio/addac/adt7316.c +++ b/drivers/staging/iio/addac/adt7316.c @@ -1755,55 +1755,55 @@ static irqreturn_t adt7316_event_handler(int irq, void *private) time = iio_get_time_ns(indio_dev); if (stat1 & BIT(0)) iio_push_event(indio_dev, - IIO_UNMOD_EVENT_CODE(IIO_TEMP, 0, - IIO_EV_TYPE_THRESH, - IIO_EV_DIR_RISING), + iio_unmod_event_code(iio_temp, 0, + iio_ev_type_thresh, + iio_ev_dir_rising), time); if (stat1 & BIT(1)) iio_push_event(indio_dev, - IIO_UNMOD_EVENT_CODE(IIO_TEMP, 0, - IIO_EV_TYPE_THRESH, - IIO_EV_DIR_FALLING), + iio_unmod_event_code(iio_temp, 0, + iio_ev_type_thresh, + iio_ev_dir_falling), time); if (stat1 & BIT(2)) iio_push_event(indio_dev, - IIO_UNMOD_EVENT_CODE(IIO_TEMP, 1, - IIO_EV_TYPE_THRESH, - IIO_EV_DIR_RISING), + iio_unmod_event_code(iio_temp, 1, + iio_ev_type_thresh, + iio_ev_dir_rising), time); if (stat1 & BIT(3)) iio_push_event(indio_dev, - IIO_UNMOD_EVENT_CODE(IIO_TEMP, 1, - IIO_EV_TYPE_THRESH, - IIO_EV_DIR_FALLING), + iio_unmod_event_code(iio_temp, 1, + iio_ev_type_thresh, + iio_ev_dir_falling), time); if (stat1 & BIT(5)) iio_push_event(indio_dev, - IIO_UNMOD_EVENT_CODE(IIO_VOLTAGE, 1, - IIO_EV_TYPE_THRESH, - IIO_EV_DIR_EITHER), + iio_unmod_event_code(iio_voltage, 1, + iio_ev_type_thresh, + iio_ev_dir_either), time); if (stat1 & BIT(6)) iio_push_event(indio_dev, - IIO_UNMOD_EVENT_CODE(IIO_VOLTAGE, 2, - IIO_EV_TYPE_THRESH, - IIO_EV_DIR_EITHER), + iio_unmod_event_code(iio_voltage, 2, + iio_ev_type_thresh, + iio_ev_dir_either), time); if (stat1 & BIT(7)) iio_push_event(indio_dev, - IIO_UNMOD_EVENT_CODE(IIO_VOLTAGE, 3, - IIO_EV_TYPE_THRESH, - IIO_EV_DIR_EITHER), + iio_unmod_event_code(iio_voltage, 3, + iio_ev_type_thresh, + iio_ev_dir_either), time); } ret = chip->bus.read(chip->bus.client, ADT7316_INT_STAT2, &stat2); if (!ret) { if (stat2 & ADT7316_INT_MASK2_VDD) iio_push_event(indio_dev, - IIO_UNMOD_EVENT_CODE(IIO_VOLTAGE, + iio_unmod_event_code(iio_voltage, 0, - IIO_EV_TYPE_THRESH, - IIO_EV_DIR_RISING), + iio_ev_type_thresh, + iio_ev_dir_rising), iio_get_time_ns(indio_dev)); } -- 2.7.4
Powered by blists - more mailing lists