1. 05 10月, 2006 1 次提交
    • M
      [PATCH] itmtouch: fix inverted flag to indicate touch location correctly, correct white space · 77dc2db6
      Mark Assad 提交于
      There is a bug in the current version of the itmtouch USB touchscreen
      driver.  The if statment that checks if pressure is being applied to the
      touch screen is now missing a ! (not), so events are no longer being
      reported correctly.
      
      The original source code for this line was as follows:
      
      	#define UCP(x) ((unsigned char*)(x))
      	#define UCOM(x,y,z) ((UCP((x)->transfer_buffer)[y]) & (z))
      
      	...
      	if (!UCOM(urb, 7, 0x20)) {
      
      And was cleaned to:
      
      	unsigned char *data = urb->transfer_buffer;
      	....
      	 if (data[7] & 0x20) {
      
      (note the lack of '!')
      
      This has been tested on an LG L1510BF and an LG1510SF touch screen.
      Signed-off-by: NMark Assad <massad@gmail.com>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      77dc2db6
  2. 04 10月, 2006 1 次提交
  3. 29 9月, 2006 1 次提交
  4. 28 9月, 2006 15 次提交
  5. 23 9月, 2006 1 次提交
  6. 12 9月, 2006 1 次提交
  7. 08 9月, 2006 2 次提交
  8. 01 9月, 2006 2 次提交
  9. 12 8月, 2006 1 次提交
  10. 05 8月, 2006 5 次提交
  11. 03 8月, 2006 1 次提交
  12. 19 7月, 2006 5 次提交
  13. 15 7月, 2006 1 次提交
  14. 13 7月, 2006 1 次提交
  15. 01 7月, 2006 1 次提交
  16. 26 6月, 2006 1 次提交