Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1343923
| From | Julia Lawall <julia.lawall@lip6.fr> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] driver: input :touchscreen : add Raydium I2C touch driver file |
| Date | 2016-02-26 10:00 +0100 |
| Message-ID | <r6mpI-x9-7@gated-at.bofh.it> (permalink) |
| References | <r6mpI-x9-9@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Please adjust the indentation. julia On Fri, 26 Feb 2016, kbuild test robot wrote: > Hi jeffrey.lin, > > [auto build test WARNING on input/next] > [also build test WARNING on v4.5-rc5 next-20160226] > [if your patch is applied to the wrong git tree, please drop us a note to help improving the system] > > url: https://github.com/0day-ci/linux/commits/jeffrey-lin/driver-input-touchscreen-add-Raydium-I2C-touch-driver-file/20160226-152542 > base: https://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git next > :::::: branch date: 64 minutes ago > :::::: commit date: 64 minutes ago > > >> drivers/input/touchscreen/raydium_i2c_ts.c:536:3-12: code aligned with following code on line 538 > > git remote add linux-review https://github.com/0day-ci/linux > git remote update linux-review > git checkout 18ddd28567d08b114b576e801475d6d7209f76f5 > vim +536 drivers/input/touchscreen/raydium_i2c_ts.c > > 18ddd285 jeffrey.lin 2016-02-26 530 > 18ddd285 jeffrey.lin 2016-02-26 531 input_mt_slot(ts->input, i); > 18ddd285 jeffrey.lin 2016-02-26 532 input_mt_report_slot_state(ts->input, > 18ddd285 jeffrey.lin 2016-02-26 533 MT_TOOL_FINGER, f_state != 0); > 18ddd285 jeffrey.lin 2016-02-26 534 > 18ddd285 jeffrey.lin 2016-02-26 535 if (!f_state) > 18ddd285 jeffrey.lin 2016-02-26 @536 continue; > 18ddd285 jeffrey.lin 2016-02-26 537 > 18ddd285 jeffrey.lin 2016-02-26 @538 x = (data->x_pos_msb << 8) | (data->x_pos_lsb); > 18ddd285 jeffrey.lin 2016-02-26 539 y = (data->y_pos_msb << 8) | (data->y_pos_lsb); > 18ddd285 jeffrey.lin 2016-02-26 540 > 18ddd285 jeffrey.lin 2016-02-26 541 input_report_key(ts->input, > > --- > 0-DAY kernel test infrastructure Open Source Technology Center > https://lists.01.org/pipermail/kbuild-all Intel Corporation >
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
Re: [PATCH] driver: input :touchscreen : add Raydium I2C touch driver file Julia Lawall <julia.lawall@lip6.fr> - 2016-02-26 10:00 +0100 RE: [PATCH] driver: input :touchscreen : add Raydium I2C touch driver file Jeffrey Lin (林義章) <Jeffrey.Lin@rad-ic.com> - 2016-02-26 11:10 +0100
csiph-web