* [PATCH v2] ARM: OMAP: WiLink platform data for the PandaBoard
@ 2012-03-06 22:55 Mircea Gherzan
2012-03-09 18:31 ` Tony Lindgren
2012-03-17 12:57 ` Mircea Gherzan
0 siblings, 2 replies; 8+ messages in thread
From: Mircea Gherzan @ 2012-03-06 22:55 UTC (permalink / raw)
To: linux-arm-kernel
The "uim" deamon requires sysfs entries that are filled in using
this platform data.
Signed-off-by: Mircea Gherzan <mgherzan@gmail.com>
---
arch/arm/mach-omap2/board-omap4panda.c | 14 ++++++++++++--
include/linux/ti_wilink_st.h | 2 ++
2 files changed, 14 insertions(+), 2 deletions(-)
diff --git a/arch/arm/mach-omap2/board-omap4panda.c b/arch/arm/mach-omap2/board-omap4panda.c
index b1d74d6..339e781 100644
--- a/arch/arm/mach-omap2/board-omap4panda.c
+++ b/arch/arm/mach-omap2/board-omap4panda.c
@@ -27,6 +27,7 @@
#include <linux/i2c/twl.h>
#include <linux/regulator/machine.h>
#include <linux/regulator/fixed.h>
+#include <linux/ti_wilink_st.h>
#include <linux/wl12xx.h>
#include <mach/hardware.h>
@@ -56,12 +57,21 @@
#define HDMI_GPIO_HPD 63 /* Hotplug detect */
/* wl127x BT, FM, GPS connectivity chip */
-static int wl1271_gpios[] = {46, -1, -1};
+static struct ti_st_plat_data wilink_platform_data = {
+ .nshutdown_gpio = 46,
+ .dev_name = "/dev/ttyO1",
+ .flow_cntrl = 1,
+ .baud_rate = 3000000,
+ .chip_enable = NULL,
+ .suspend = NULL,
+ .resume = NULL,
+};
+
static struct platform_device wl1271_device = {
.name = "kim",
.id = -1,
.dev = {
- .platform_data = &wl1271_gpios,
+ .platform_data = &wilink_platform_data,
},
};
diff --git a/include/linux/ti_wilink_st.h b/include/linux/ti_wilink_st.h
index 2ef4385..3ca0269 100644
--- a/include/linux/ti_wilink_st.h
+++ b/include/linux/ti_wilink_st.h
@@ -25,6 +25,8 @@
#ifndef TI_WILINK_ST_H
#define TI_WILINK_ST_H
+#include <linux/skbuff.h>
+
/**
* enum proto-type - The protocol on WiLink chips which share a
* common physical interface like UART.
--
1.7.9.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH v2] ARM: OMAP: WiLink platform data for the PandaBoard
2012-03-06 22:55 [PATCH v2] ARM: OMAP: WiLink platform data for the PandaBoard Mircea Gherzan
@ 2012-03-09 18:31 ` Tony Lindgren
2012-03-10 5:07 ` Luciano Coelho
2012-03-11 20:05 ` Mircea Gherzan
2012-03-17 12:57 ` Mircea Gherzan
1 sibling, 2 replies; 8+ messages in thread
From: Tony Lindgren @ 2012-03-09 18:31 UTC (permalink / raw)
To: linux-arm-kernel
Hi Luca,
* Mircea Gherzan <mgherzan@gmail.com> [120306 14:23]:
> The "uim" deamon requires sysfs entries that are filled in using
> this platform data.
>
> Signed-off-by: Mircea Gherzan <mgherzan@gmail.com>
> ---
> arch/arm/mach-omap2/board-omap4panda.c | 14 ++++++++++++--
> include/linux/ti_wilink_st.h | 2 ++
> 2 files changed, 14 insertions(+), 2 deletions(-)
>
> diff --git a/arch/arm/mach-omap2/board-omap4panda.c b/arch/arm/mach-omap2/board-omap4panda.c
> index b1d74d6..339e781 100644
> --- a/arch/arm/mach-omap2/board-omap4panda.c
> +++ b/arch/arm/mach-omap2/board-omap4panda.c
> @@ -27,6 +27,7 @@
> #include <linux/i2c/twl.h>
> #include <linux/regulator/machine.h>
> #include <linux/regulator/fixed.h>
> +#include <linux/ti_wilink_st.h>
> #include <linux/wl12xx.h>
>
> #include <mach/hardware.h>
> @@ -56,12 +57,21 @@
> #define HDMI_GPIO_HPD 63 /* Hotplug detect */
>
> /* wl127x BT, FM, GPS connectivity chip */
> -static int wl1271_gpios[] = {46, -1, -1};
> +static struct ti_st_plat_data wilink_platform_data = {
> + .nshutdown_gpio = 46,
> + .dev_name = "/dev/ttyO1",
> + .flow_cntrl = 1,
> + .baud_rate = 3000000,
> + .chip_enable = NULL,
> + .suspend = NULL,
> + .resume = NULL,
> +};
> +
> static struct platform_device wl1271_device = {
> .name = "kim",
> .id = -1,
> .dev = {
> - .platform_data = &wl1271_gpios,
> + .platform_data = &wilink_platform_data,
> },
> };
>
> diff --git a/include/linux/ti_wilink_st.h b/include/linux/ti_wilink_st.h
> index 2ef4385..3ca0269 100644
> --- a/include/linux/ti_wilink_st.h
> +++ b/include/linux/ti_wilink_st.h
> @@ -25,6 +25,8 @@
> #ifndef TI_WILINK_ST_H
> #define TI_WILINK_ST_H
>
> +#include <linux/skbuff.h>
> +
> /**
> * enum proto-type - The protocol on WiLink chips which share a
> * common physical interface like UART.
> --
Just checking.. Can you please take a look at this patch
and confirm that this is how things are supposed to be done?
To me passing some third driver's dev_name in pdata seems
pretty weird.. But then again maybe I just don't know how
this is supposed to work.
Regards,
Tony
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v2] ARM: OMAP: WiLink platform data for the PandaBoard
2012-03-09 18:31 ` Tony Lindgren
@ 2012-03-10 5:07 ` Luciano Coelho
2012-03-11 20:05 ` Mircea Gherzan
1 sibling, 0 replies; 8+ messages in thread
From: Luciano Coelho @ 2012-03-10 5:07 UTC (permalink / raw)
To: linux-arm-kernel
On Fri, 2012-03-09 at 10:31 -0800, Tony Lindgren wrote:
> Hi Luca,
Hi Tony,
> * Mircea Gherzan <mgherzan@gmail.com> [120306 14:23]:
> > The "uim" deamon requires sysfs entries that are filled in using
> > this platform data.
> >
> > Signed-off-by: Mircea Gherzan <mgherzan@gmail.com>
> > ---
> > arch/arm/mach-omap2/board-omap4panda.c | 14 ++++++++++++--
> > include/linux/ti_wilink_st.h | 2 ++
> > 2 files changed, 14 insertions(+), 2 deletions(-)
> >
> > diff --git a/arch/arm/mach-omap2/board-omap4panda.c b/arch/arm/mach-omap2/board-omap4panda.c
> > index b1d74d6..339e781 100644
> > --- a/arch/arm/mach-omap2/board-omap4panda.c
> > +++ b/arch/arm/mach-omap2/board-omap4panda.c
> > @@ -27,6 +27,7 @@
> > #include <linux/i2c/twl.h>
> > #include <linux/regulator/machine.h>
> > #include <linux/regulator/fixed.h>
> > +#include <linux/ti_wilink_st.h>
> > #include <linux/wl12xx.h>
> >
> > #include <mach/hardware.h>
> > @@ -56,12 +57,21 @@
> > #define HDMI_GPIO_HPD 63 /* Hotplug detect */
> >
> > /* wl127x BT, FM, GPS connectivity chip */
> > -static int wl1271_gpios[] = {46, -1, -1};
> > +static struct ti_st_plat_data wilink_platform_data = {
> > + .nshutdown_gpio = 46,
> > + .dev_name = "/dev/ttyO1",
> > + .flow_cntrl = 1,
> > + .baud_rate = 3000000,
> > + .chip_enable = NULL,
> > + .suspend = NULL,
> > + .resume = NULL,
> > +};
> > +
> > static struct platform_device wl1271_device = {
> > .name = "kim",
> > .id = -1,
> > .dev = {
> > - .platform_data = &wl1271_gpios,
> > + .platform_data = &wilink_platform_data,
> > },
> > };
> >
> > diff --git a/include/linux/ti_wilink_st.h b/include/linux/ti_wilink_st.h
> > index 2ef4385..3ca0269 100644
> > --- a/include/linux/ti_wilink_st.h
> > +++ b/include/linux/ti_wilink_st.h
> > @@ -25,6 +25,8 @@
> > #ifndef TI_WILINK_ST_H
> > #define TI_WILINK_ST_H
> >
> > +#include <linux/skbuff.h>
> > +
> > /**
> > * enum proto-type - The protocol on WiLink chips which share a
> > * common physical interface like UART.
> > --
>
> Just checking.. Can you please take a look at this patch
> and confirm that this is how things are supposed to be done?
>
> To me passing some third driver's dev_name in pdata seems
> pretty weird.. But then again maybe I just don't know how
> this is supposed to work.
This looks pretty weird to me too. The "/dev/ttyO1" thing doesn't look
right. But I don't really know how this works either, because this is
the BT/FM/GPS part of the wl12xx chip. And, to be honest, I don't know
anything about it. I only know about the wifi part of it. :\
--
Cheers,
Luca.
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v2] ARM: OMAP: WiLink platform data for the PandaBoard
2012-03-09 18:31 ` Tony Lindgren
2012-03-10 5:07 ` Luciano Coelho
@ 2012-03-11 20:05 ` Mircea Gherzan
2012-03-11 20:13 ` Pavan Savoy
1 sibling, 1 reply; 8+ messages in thread
From: Mircea Gherzan @ 2012-03-11 20:05 UTC (permalink / raw)
To: linux-arm-kernel
Am 09.03.2012 19:31, schrieb Tony Lindgren:
> Hi Luca,
>
> * Mircea Gherzan <mgherzan@gmail.com> [120306 14:23]:
>> The "uim" deamon requires sysfs entries that are filled in using
>> this platform data.
>>
>> Signed-off-by: Mircea Gherzan <mgherzan@gmail.com>
>> ---
>> arch/arm/mach-omap2/board-omap4panda.c | 14 ++++++++++++--
>> include/linux/ti_wilink_st.h | 2 ++
>> 2 files changed, 14 insertions(+), 2 deletions(-)
>>
>> diff --git a/arch/arm/mach-omap2/board-omap4panda.c b/arch/arm/mach-omap2/board-omap4panda.c
>> index b1d74d6..339e781 100644
>> --- a/arch/arm/mach-omap2/board-omap4panda.c
>> +++ b/arch/arm/mach-omap2/board-omap4panda.c
>> @@ -27,6 +27,7 @@
>> #include <linux/i2c/twl.h>
>> #include <linux/regulator/machine.h>
>> #include <linux/regulator/fixed.h>
>> +#include <linux/ti_wilink_st.h>
>> #include <linux/wl12xx.h>
>>
>> #include <mach/hardware.h>
>> @@ -56,12 +57,21 @@
>> #define HDMI_GPIO_HPD 63 /* Hotplug detect */
>>
>> /* wl127x BT, FM, GPS connectivity chip */
>> -static int wl1271_gpios[] = {46, -1, -1};
>> +static struct ti_st_plat_data wilink_platform_data = {
>> + .nshutdown_gpio = 46,
>> + .dev_name = "/dev/ttyO1",
>> + .flow_cntrl = 1,
>> + .baud_rate = 3000000,
>> + .chip_enable = NULL,
>> + .suspend = NULL,
>> + .resume = NULL,
>> +};
>> +
>> static struct platform_device wl1271_device = {
>> .name = "kim",
>> .id = -1,
>> .dev = {
>> - .platform_data = &wl1271_gpios,
>> + .platform_data = &wilink_platform_data,
>> },
>> };
>>
>> diff --git a/include/linux/ti_wilink_st.h b/include/linux/ti_wilink_st.h
>> index 2ef4385..3ca0269 100644
>> --- a/include/linux/ti_wilink_st.h
>> +++ b/include/linux/ti_wilink_st.h
>> @@ -25,6 +25,8 @@
>> #ifndef TI_WILINK_ST_H
>> #define TI_WILINK_ST_H
>>
>> +#include <linux/skbuff.h>
>> +
>> /**
>> * enum proto-type - The protocol on WiLink chips which share a
>> * common physical interface like UART.
>> --
>
> Just checking.. Can you please take a look at this patch
> and confirm that this is how things are supposed to be done?
>
> To me passing some third driver's dev_name in pdata seems
> pretty weird.. But then again maybe I just don't know how
> this is supposed to work.
This is what the ti_st driver expects in the platform data structure.
More precisely, in kim_probe():
/* copying platform data */
strncpy(kim_gdata->dev_name, pdata->dev_name,UART_DEV_NAME_LEN);
kim_gdata->flow_cntrl = pdata->flow_cntrl;
kim_gdata->baud_rate = pdata->baud_rate;
pr_info("sysfs entries created\n");
So IMHO the patch is a valid fix. However, one more patch [1] is still
required to get BT and WLAN working on the PandaBoard.
Thanks,
Mircea
[1] http://elinux.org/images/8/8d/0001a-omap4-pandaboard-wlan-fix.patch
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v2] ARM: OMAP: WiLink platform data for the PandaBoard
2012-03-11 20:05 ` Mircea Gherzan
@ 2012-03-11 20:13 ` Pavan Savoy
2012-03-11 22:30 ` Mircea Gherzan
0 siblings, 1 reply; 8+ messages in thread
From: Pavan Savoy @ 2012-03-11 20:13 UTC (permalink / raw)
To: linux-arm-kernel
On Sun, Mar 11, 2012 at 2:05 PM, Mircea Gherzan <mgherzan@gmail.com> wrote:
> Am 09.03.2012 19:31, schrieb Tony Lindgren:
>> Hi Luca,
>>
>> * Mircea Gherzan <mgherzan@gmail.com> [120306 14:23]:
>>> The "uim" deamon requires sysfs entries that are filled in using
>>> this platform data.
>>>
>>> Signed-off-by: Mircea Gherzan <mgherzan@gmail.com>
>>> ---
>>> ?arch/arm/mach-omap2/board-omap4panda.c | ? 14 ++++++++++++--
>>> ?include/linux/ti_wilink_st.h ? ? ? ? ? | ? ?2 ++
>>> ?2 files changed, 14 insertions(+), 2 deletions(-)
>>>
>>> diff --git a/arch/arm/mach-omap2/board-omap4panda.c b/arch/arm/mach-omap2/board-omap4panda.c
>>> index b1d74d6..339e781 100644
>>> --- a/arch/arm/mach-omap2/board-omap4panda.c
>>> +++ b/arch/arm/mach-omap2/board-omap4panda.c
>>> @@ -27,6 +27,7 @@
>>> ?#include <linux/i2c/twl.h>
>>> ?#include <linux/regulator/machine.h>
>>> ?#include <linux/regulator/fixed.h>
>>> +#include <linux/ti_wilink_st.h>
>>> ?#include <linux/wl12xx.h>
>>>
>>> ?#include <mach/hardware.h>
>>> @@ -56,12 +57,21 @@
>>> ?#define HDMI_GPIO_HPD ?63 /* Hotplug detect */
>>>
>>> ?/* wl127x BT, FM, GPS connectivity chip */
>>> -static int wl1271_gpios[] = {46, -1, -1};
>>> +static struct ti_st_plat_data wilink_platform_data = {
>>> + ? ?.nshutdown_gpio = 46,
>>> + ? ?.dev_name ? ? ? = "/dev/ttyO1",
>>> + ? ?.flow_cntrl ? ? = 1,
>>> + ? ?.baud_rate ? ? ?= 3000000,
>>> + ? ?.chip_enable ? ?= NULL,
>>> + ? ?.suspend ? ? ? ?= NULL,
>>> + ? ?.resume ? ? ? ? = NULL,
>>> +};
>>> +
>>> ?static struct platform_device wl1271_device = {
>>> ? ? ?.name ? = "kim",
>>> ? ? ?.id ? ? = -1,
>>> ? ? ?.dev ? ?= {
>>> - ? ? ? ? ? ?.platform_data ?= &wl1271_gpios,
>>> + ? ? ? ? ? ?.platform_data ?= &wilink_platform_data,
>>> ? ? ?},
>>> ?};
>>>
>>> diff --git a/include/linux/ti_wilink_st.h b/include/linux/ti_wilink_st.h
>>> index 2ef4385..3ca0269 100644
>>> --- a/include/linux/ti_wilink_st.h
>>> +++ b/include/linux/ti_wilink_st.h
>>> @@ -25,6 +25,8 @@
>>> ?#ifndef TI_WILINK_ST_H
>>> ?#define TI_WILINK_ST_H
>>>
>>> +#include <linux/skbuff.h>
>>> +
>>> ?/**
>>> ? * enum proto-type - The protocol on WiLink chips which share a
>>> ? * ?common physical interface like UART.
>>> --
>>
>> Just checking.. Can you please take a look at this patch
>> and confirm that this is how things are supposed to be done?
>>
>> To me passing some third driver's dev_name in pdata seems
>> pretty weird.. But then again maybe I just don't know how
>> this is supposed to work.
>
> This is what the ti_st driver expects in the platform data structure.
> More precisely, in kim_probe():
>
> ? ? ? ?/* copying platform data */
> ? ? ? ?strncpy(kim_gdata->dev_name, pdata->dev_name,UART_DEV_NAME_LEN);
> ? ? ? ?kim_gdata->flow_cntrl = pdata->flow_cntrl;
> ? ? ? ?kim_gdata->baud_rate = pdata->baud_rate;
> ? ? ? ?pr_info("sysfs entries created\n");
>
> So IMHO the patch is a valid fix. However, one more patch [1] is still
> required to get BT and WLAN working on the PandaBoard.
The patch looks alright to me.
Yes, the UART to which BT chip is connected (along with other
technologies for which shared transport is required), the baud rate
which the UART supports & also a flag so as to check whether it
supports flow control - ideally is supposed to come from boot-loader,
device tree sort of configuration - if not can be hard-coded in the
relevant platform specific files like in this case.
This is picked up from ST as platform data as is read from the
user-space daemon, because unfortunately none of these configurations
can be done in kernel (the right way for TTY).
1 more patch or an addition to this patch to add the wl1271_device &
the btwilink device is also required to get ST probe & BT probe.
The btwilink driver is a platform device because UART devices don't
have a probe mechanism unlike say usb, i2c..
> Thanks,
> Mircea
>
> [1] http://elinux.org/images/8/8d/0001a-omap4-pandaboard-wlan-fix.patch
>
--
--Pavan Savoy
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v2] ARM: OMAP: WiLink platform data for the PandaBoard
2012-03-11 20:13 ` Pavan Savoy
@ 2012-03-11 22:30 ` Mircea Gherzan
0 siblings, 0 replies; 8+ messages in thread
From: Mircea Gherzan @ 2012-03-11 22:30 UTC (permalink / raw)
To: linux-arm-kernel
Am 11.03.2012 21:13, schrieb Pavan Savoy:
> On Sun, Mar 11, 2012 at 2:05 PM, Mircea Gherzan <mgherzan@gmail.com> wrote:
>> Am 09.03.2012 19:31, schrieb Tony Lindgren:
>>> Hi Luca,
>>>
>>> * Mircea Gherzan <mgherzan@gmail.com> [120306 14:23]:
>>>> The "uim" deamon requires sysfs entries that are filled in using
>>>> this platform data.
>>>>
>>>> Signed-off-by: Mircea Gherzan <mgherzan@gmail.com>
>>>> ---
>>>> arch/arm/mach-omap2/board-omap4panda.c | 14 ++++++++++++--
>>>> include/linux/ti_wilink_st.h | 2 ++
>>>> 2 files changed, 14 insertions(+), 2 deletions(-)
>>>>
>>>> diff --git a/arch/arm/mach-omap2/board-omap4panda.c b/arch/arm/mach-omap2/board-omap4panda.c
>>>> index b1d74d6..339e781 100644
>>>> --- a/arch/arm/mach-omap2/board-omap4panda.c
>>>> +++ b/arch/arm/mach-omap2/board-omap4panda.c
>>>> @@ -27,6 +27,7 @@
>>>> #include <linux/i2c/twl.h>
>>>> #include <linux/regulator/machine.h>
>>>> #include <linux/regulator/fixed.h>
>>>> +#include <linux/ti_wilink_st.h>
>>>> #include <linux/wl12xx.h>
>>>>
>>>> #include <mach/hardware.h>
>>>> @@ -56,12 +57,21 @@
>>>> #define HDMI_GPIO_HPD 63 /* Hotplug detect */
>>>>
>>>> /* wl127x BT, FM, GPS connectivity chip */
>>>> -static int wl1271_gpios[] = {46, -1, -1};
>>>> +static struct ti_st_plat_data wilink_platform_data = {
>>>> + .nshutdown_gpio = 46,
>>>> + .dev_name = "/dev/ttyO1",
>>>> + .flow_cntrl = 1,
>>>> + .baud_rate = 3000000,
>>>> + .chip_enable = NULL,
>>>> + .suspend = NULL,
>>>> + .resume = NULL,
>>>> +};
>>>> +
>>>> static struct platform_device wl1271_device = {
>>>> .name = "kim",
>>>> .id = -1,
>>>> .dev = {
>>>> - .platform_data = &wl1271_gpios,
>>>> + .platform_data = &wilink_platform_data,
>>>> },
>>>> };
>>>>
>>>> diff --git a/include/linux/ti_wilink_st.h b/include/linux/ti_wilink_st.h
>>>> index 2ef4385..3ca0269 100644
>>>> --- a/include/linux/ti_wilink_st.h
>>>> +++ b/include/linux/ti_wilink_st.h
>>>> @@ -25,6 +25,8 @@
>>>> #ifndef TI_WILINK_ST_H
>>>> #define TI_WILINK_ST_H
>>>>
>>>> +#include <linux/skbuff.h>
>>>> +
>>>> /**
>>>> * enum proto-type - The protocol on WiLink chips which share a
>>>> * common physical interface like UART.
>>>> --
>>>
>>> Just checking.. Can you please take a look at this patch
>>> and confirm that this is how things are supposed to be done?
>>>
>>> To me passing some third driver's dev_name in pdata seems
>>> pretty weird.. But then again maybe I just don't know how
>>> this is supposed to work.
>>
>> This is what the ti_st driver expects in the platform data structure.
>> More precisely, in kim_probe():
>>
>> /* copying platform data */
>> strncpy(kim_gdata->dev_name, pdata->dev_name,UART_DEV_NAME_LEN);
>> kim_gdata->flow_cntrl = pdata->flow_cntrl;
>> kim_gdata->baud_rate = pdata->baud_rate;
>> pr_info("sysfs entries created\n");
>>
>> So IMHO the patch is a valid fix. However, one more patch [1] is still
>> required to get BT and WLAN working on the PandaBoard.
>
> The patch looks alright to me.
> Yes, the UART to which BT chip is connected (along with other
> technologies for which shared transport is required), the baud rate
> which the UART supports & also a flag so as to check whether it
> supports flow control - ideally is supposed to come from boot-loader,
> device tree sort of configuration - if not can be hard-coded in the
> relevant platform specific files like in this case.
>
> This is picked up from ST as platform data as is read from the
> user-space daemon, because unfortunately none of these configurations
> can be done in kernel (the right way for TTY).
>
> 1 more patch or an addition to this patch to add the wl1271_device &
> the btwilink device is also required to get ST probe & BT probe.
> The btwilink driver is a platform device because UART devices don't
> have a probe mechanism unlike say usb, i2c..
This issue has been addressed in a previous patch [1].
[1] http://www.spinics.net/lists/linux-omap/msg65181.html
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v2] ARM: OMAP: WiLink platform data for the PandaBoard
2012-03-06 22:55 [PATCH v2] ARM: OMAP: WiLink platform data for the PandaBoard Mircea Gherzan
2012-03-09 18:31 ` Tony Lindgren
@ 2012-03-17 12:57 ` Mircea Gherzan
2012-05-08 21:56 ` Tony Lindgren
1 sibling, 1 reply; 8+ messages in thread
From: Mircea Gherzan @ 2012-03-17 12:57 UTC (permalink / raw)
To: linux-arm-kernel
Hi Tony,
Am 06.03.2012 23:55, schrieb Mircea Gherzan:
> The "uim" deamon requires sysfs entries that are filled in using
> this platform data.
>
> Signed-off-by: Mircea Gherzan <mgherzan@gmail.com>
> ---
> arch/arm/mach-omap2/board-omap4panda.c | 14 ++++++++++++--
> include/linux/ti_wilink_st.h | 2 ++
> 2 files changed, 14 insertions(+), 2 deletions(-)
Gentle ping.
Thanks,
Mircea
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v2] ARM: OMAP: WiLink platform data for the PandaBoard
2012-03-17 12:57 ` Mircea Gherzan
@ 2012-05-08 21:56 ` Tony Lindgren
0 siblings, 0 replies; 8+ messages in thread
From: Tony Lindgren @ 2012-05-08 21:56 UTC (permalink / raw)
To: linux-arm-kernel
* Mircea Gherzan <mgherzan@gmail.com> [120317 06:00]:
> Hi Tony,
>
> Am 06.03.2012 23:55, schrieb Mircea Gherzan:
> > The "uim" deamon requires sysfs entries that are filled in using
> > this platform data.
> >
> > Signed-off-by: Mircea Gherzan <mgherzan@gmail.com>
> > ---
> > arch/arm/mach-omap2/board-omap4panda.c | 14 ++++++++++++--
> > include/linux/ti_wilink_st.h | 2 ++
> > 2 files changed, 14 insertions(+), 2 deletions(-)
>
> Gentle ping.
Thanks for patience, applying to board branch finally.
Tony
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2012-05-08 21:56 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-06 22:55 [PATCH v2] ARM: OMAP: WiLink platform data for the PandaBoard Mircea Gherzan
2012-03-09 18:31 ` Tony Lindgren
2012-03-10 5:07 ` Luciano Coelho
2012-03-11 20:05 ` Mircea Gherzan
2012-03-11 20:13 ` Pavan Savoy
2012-03-11 22:30 ` Mircea Gherzan
2012-03-17 12:57 ` Mircea Gherzan
2012-05-08 21:56 ` Tony Lindgren
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).