Skip to content

Commit

Permalink
Input: tps6507x-ts - remove vref from platform data
Browse files Browse the repository at this point in the history
Although defined in platform data, vref is not used anywhere.

Also remove model, irq, and clear_penirq as they are not used either.

Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
  • Loading branch information
Dmitry Torokhov committed Jun 25, 2013
1 parent 02a7160 commit 2238128
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
5 changes: 0 additions & 5 deletions drivers/input/touchscreen/tps6507x-ts.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,8 @@ struct tps6507x_ts {
struct delayed_work work;
struct ts_event tc;
struct tps6507x_dev *mfd;
u16 model;
u16 min_pressure;
int irq;
void (*clear_penirq)(void);
unsigned long poll_period; /* ms */
int vref; /* non-zero to leave vref on */
bool pendown;
};

Expand Down Expand Up @@ -291,7 +287,6 @@ static int tps6507x_ts_probe(struct platform_device *pdev)

if (init_data) {
tsc->poll_period = init_data->poll_period;
tsc->vref = init_data->vref;
tsc->min_pressure = init_data->min_pressure;
input_dev->id.vendor = init_data->vendor;
input_dev->id.product = init_data->product;
Expand Down
1 change: 0 additions & 1 deletion include/linux/input/tps6507x-ts.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
/* Board specific touch screen initial values */
struct touchscreen_init_data {
int poll_period; /* ms */
int vref; /* non-zero to leave vref on */
__u16 min_pressure; /* min reading to be treated as a touch */
__u16 vendor;
__u16 product;
Expand Down

0 comments on commit 2238128

Please sign in to comment.