aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/auxdisplay
diff options
context:
space:
mode:
authorWei Yongjun <weiyongjun1@huawei.com>2017-04-25 16:13:34 +0000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-05-25 18:24:03 +0200
commit4654bdb63910eaafd586c7c12b473ecc0b3ab94a (patch)
tree3530782f07eeee70e870d17def014417cf9b6b0f /drivers/auxdisplay
parentgoldfish_pipe: make pipe_dev static (diff)
downloadlinux-dev-4654bdb63910eaafd586c7c12b473ecc0b3ab94a.tar.xz
linux-dev-4654bdb63910eaafd586c7c12b473ecc0b3ab94a.zip
auxdisplay: Convert list_for_each to entry variant
convert list_for_each() to list_for_each_entry() where applicable. Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/auxdisplay')
-rw-r--r--drivers/auxdisplay/panel.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/auxdisplay/panel.c b/drivers/auxdisplay/panel.c
index e0c014c2356f..7a8b8fb2f572 100644
--- a/drivers/auxdisplay/panel.c
+++ b/drivers/auxdisplay/panel.c
@@ -1345,14 +1345,11 @@ static inline void input_state_falling(struct logical_input *input)
static void panel_process_inputs(void)
{
- struct list_head *item;
struct logical_input *input;
keypressed = 0;
inputs_stable = 1;
- list_for_each(item, &logical_inputs) {
- input = list_entry(item, struct logical_input, list);
-
+ list_for_each_entry(input, &logical_inputs, list) {
switch (input->state) {
case INPUT_ST_LOW:
if ((phys_curr & input->mask) != input->value)