linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Matthias Brugger <matthias.bgg@googlemail.com>
To: Igor Grinberg <grinberg@compulab.co.il>
Cc: Matthias Brugger <matthias.bgg@googlemail.com>,
	Dmitry Torokhov <dmitry.torokhov@gmail.com>,
	linux-input@vger.kernel.org
Subject: Re: [PATCH] touchscreen/ads7846: Move struct ads7846 to global include.
Date: Wed, 24 Oct 2012 10:14:02 +0200	[thread overview]
Message-ID: <5087A34A.9020007@gmail.com> (raw)
In-Reply-To: <50757B94.7060504@compulab.co.il>

On 10/10/2012 03:43 PM, Igor Grinberg wrote:
> On 10/10/12 12:37, Matthias Brugger wrote:
>> To implement a custom filter in the board platform code,
>> the struct ads7864 might be needed. This patch moves the struct
>> to the global include file of the driver.
>>
>> Signed-off-by: Matthias Brugger <matthias.bgg@gmail.com>
>
> NAK. This is a private driver data. No one else should mess with it.
>

You are completely right. Actually I wanted to encapsulate the variables 
used by the filter, and not the whole driver data. I blame the lack of 
coffee for my mistake and will send a patch these days.

>> ---
>>   drivers/input/touchscreen/ads7846.c |   55 -----------------------------------
>>   include/linux/spi/ads7846.h         |   55 +++++++++++++++++++++++++++++++++++
>>   2 files changed, 55 insertions(+), 55 deletions(-)
>>
>> diff --git a/drivers/input/touchscreen/ads7846.c b/drivers/input/touchscreen/ads7846.c
>> index f02028e..22e0b4d 100644
>> --- a/drivers/input/touchscreen/ads7846.c
>> +++ b/drivers/input/touchscreen/ads7846.c
>> @@ -90,61 +90,6 @@ struct ads7846_packet {
>>   	u8			read_x_cmd[3], read_y_cmd[3], pwrdown_cmd[3];
>>   };
>>
>> -struct ads7846 {
>> -	struct input_dev	*input;
>> -	char			phys[32];
>> -	char			name[32];
>> -
>> -	struct spi_device	*spi;
>> -	struct regulator	*reg;
>> -
>> -#if defined(CONFIG_HWMON) || defined(CONFIG_HWMON_MODULE)
>> -	struct attribute_group	*attr_group;
>> -	struct device		*hwmon;
>> -#endif
>> -
>> -	u16			model;
>> -	u16			vref_mv;
>> -	u16			vref_delay_usecs;
>> -	u16			x_plate_ohms;
>> -	u16			pressure_max;
>> -
>> -	bool			swap_xy;
>> -	bool			use_internal;
>> -
>> -	struct ads7846_packet	*packet;
>> -
>> -	struct spi_transfer	xfer[18];
>> -	struct spi_message	msg[5];
>> -	int			msg_count;
>> -	wait_queue_head_t	wait;
>> -
>> -	bool			pendown;
>> -
>> -	int			read_cnt;
>> -	int			read_rep;
>> -	int			last_read;
>> -
>> -	u16			debounce_max;
>> -	u16			debounce_tol;
>> -	u16			debounce_rep;
>> -
>> -	u16			penirq_recheck_delay_usecs;
>> -
>> -	struct mutex		lock;
>> -	bool			stopped;	/* P: lock */
>> -	bool			disabled;	/* P: lock */
>> -	bool			suspended;	/* P: lock */
>> -
>> -	int			(*filter)(void *data, int data_idx, int *val);
>> -	void			*filter_data;
>> -	void			(*filter_cleanup)(void *data);
>> -	int			(*get_pendown_state)(void);
>> -	int			gpio_pendown;
>> -
>> -	void			(*wait_for_sync)(void);
>> -};
>> -
>>   /* leave chip selected when we're done, for quicker re-select? */
>>   #if	0
>>   #define	CS_CHANGE(xfer)	((xfer).cs_change = 1)
>> diff --git a/include/linux/spi/ads7846.h b/include/linux/spi/ads7846.h
>> index c64de9d..96ca327 100644
>> --- a/include/linux/spi/ads7846.h
>> +++ b/include/linux/spi/ads7846.h
>> @@ -58,3 +58,58 @@ struct ads7846_platform_data {
>>   	unsigned long irq_flags;
>>   };
>>
>> +struct ads7846 {
>> +	struct input_dev	*input;
>> +	char			phys[32];
>> +	char			name[32];
>> +
>> +	struct spi_device	*spi;
>> +	struct regulator	*reg;
>> +
>> +#if defined(CONFIG_HWMON) || defined(CONFIG_HWMON_MODULE)
>> +	struct attribute_group	*attr_group;
>> +	struct device		*hwmon;
>> +#endif
>> +
>> +	u16			model;
>> +	u16			vref_mv;
>> +	u16			vref_delay_usecs;
>> +	u16			x_plate_ohms;
>> +	u16			pressure_max;
>> +
>> +	bool			swap_xy;
>> +	bool			use_internal;
>> +
>> +	struct ads7846_packet	*packet;
>> +
>> +	struct spi_transfer	xfer[18];
>> +	struct spi_message	msg[5];
>> +	int			msg_count;
>> +	wait_queue_head_t	wait;
>> +
>> +	bool			pendown;
>> +
>> +	int			read_cnt;
>> +	int			read_rep;
>> +	int			last_read;
>> +
>> +	u16			debounce_max;
>> +	u16			debounce_tol;
>> +	u16			debounce_rep;
>> +
>> +	u16			penirq_recheck_delay_usecs;
>> +
>> +	struct mutex		lock;
>> +	bool			stopped;	/* P: lock */
>> +	bool			disabled;	/* P: lock */
>> +	bool			suspended;	/* P: lock */
>> +
>> +	int			(*filter)(void *data, int data_idx, int *val);
>> +	void			*filter_data;
>> +	void			(*filter_cleanup)(void *data);
>> +	int			(*get_pendown_state)(void);
>> +	int			gpio_pendown;
>> +
>> +	void			(*wait_for_sync)(void);
>> +};
>> +
>


      reply	other threads:[~2012-10-24  8:14 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-10-10 10:37 [PATCH] touchscreen/ads7846: Move struct ads7846 to global include Matthias Brugger
2012-10-10 13:43 ` Igor Grinberg
2012-10-24  8:14   ` Matthias Brugger [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5087A34A.9020007@gmail.com \
    --to=matthias.bgg@googlemail.com \
    --cc=dmitry.torokhov@gmail.com \
    --cc=grinberg@compulab.co.il \
    --cc=linux-input@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).