Skip to content

Commit

Permalink
ft5x_ts: Touchscreen does not work on Banana Pi
Browse files Browse the repository at this point in the history
  • Loading branch information
nisenbeck committed Mar 5, 2015
1 parent 90a53c7 commit ffbf0bd
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions drivers/input/touchscreen/ft5x_ts.c
Expand Up @@ -1981,6 +1981,11 @@ static int __init ft5x_ts_init(void)
class_destroy(i2c_dev_class);
}

// This delay is required to run on a Banana Pi.
// Don't know why but without it does not work reliable.
// Please let me know if you know the real cause!
msleep(100);

ret = i2c_add_driver(&ft5x_ts_driver);

return ret;
Expand Down

0 comments on commit ffbf0bd

Please sign in to comment.