* [PATCH] touchscreen/ads7846: Move struct ads7846 to global include.
@ 2012-10-10 10:37 Matthias Brugger
2012-10-10 13:43 ` Igor Grinberg
0 siblings, 1 reply; 3+ messages in thread
From: Matthias Brugger @ 2012-10-10 10:37 UTC (permalink / raw)
To: Dmitry Torokhov, linux-input; +Cc: Matthias Brugger
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>
---
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);
+};
+
--
1.7.9.5
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] touchscreen/ads7846: Move struct ads7846 to global include.
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
0 siblings, 1 reply; 3+ messages in thread
From: Igor Grinberg @ 2012-10-10 13:43 UTC (permalink / raw)
To: Matthias Brugger; +Cc: Dmitry Torokhov, linux-input, Matthias Brugger
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.
> ---
> 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);
> +};
> +
--
Regards,
Igor.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] touchscreen/ads7846: Move struct ads7846 to global include.
2012-10-10 13:43 ` Igor Grinberg
@ 2012-10-24 8:14 ` Matthias Brugger
0 siblings, 0 replies; 3+ messages in thread
From: Matthias Brugger @ 2012-10-24 8:14 UTC (permalink / raw)
To: Igor Grinberg; +Cc: Matthias Brugger, Dmitry Torokhov, linux-input
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);
>> +};
>> +
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-10-24 8:14 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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 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).