* [PATCH] ARM: at91: USB AT91 gadget registration for module
@ 2012-01-27 10:28 Nicolas Ferre
2012-01-27 11:17 ` Karel Znamenacek
2012-01-28 6:53 ` Jean-Christophe PLAGNIOL-VILLARD
0 siblings, 2 replies; 3+ messages in thread
From: Nicolas Ferre @ 2012-01-27 10:28 UTC (permalink / raw)
To: plagnioj, linux-arm-kernel; +Cc: karel, linux-kernel, Nicolas Ferre, stable
Registration of at91_udc as a module will enable SoC
related code.
Fix following an idea from Karel Znamenacek.
Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Cc: stable <stable@vger.kernel.org>
---
Karel,
Do you want to add your "Acked-by" line?
arch/arm/mach-at91/at91rm9200_devices.c | 2 +-
arch/arm/mach-at91/at91sam9260_devices.c | 2 +-
arch/arm/mach-at91/at91sam9261_devices.c | 2 +-
arch/arm/mach-at91/at91sam9263_devices.c | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/arch/arm/mach-at91/at91rm9200_devices.c b/arch/arm/mach-at91/at91rm9200_devices.c
index 18bacec..97676bd 100644
--- a/arch/arm/mach-at91/at91rm9200_devices.c
+++ b/arch/arm/mach-at91/at91rm9200_devices.c
@@ -83,7 +83,7 @@ void __init at91_add_device_usbh(struct at91_usbh_data *data) {}
* USB Device (Gadget)
* -------------------------------------------------------------------- */
-#ifdef CONFIG_USB_AT91
+#if defined(CONFIG_USB_AT91) || defined(CONFIG_USB_AT91_MODULE)
static struct at91_udc_data udc_data;
static struct resource udc_resources[] = {
diff --git a/arch/arm/mach-at91/at91sam9260_devices.c b/arch/arm/mach-at91/at91sam9260_devices.c
index 642ccb6..f1a1bb45 100644
--- a/arch/arm/mach-at91/at91sam9260_devices.c
+++ b/arch/arm/mach-at91/at91sam9260_devices.c
@@ -84,7 +84,7 @@ void __init at91_add_device_usbh(struct at91_usbh_data *data) {}
* USB Device (Gadget)
* -------------------------------------------------------------------- */
-#ifdef CONFIG_USB_AT91
+#if defined(CONFIG_USB_AT91) || defined(CONFIG_USB_AT91_MODULE)
static struct at91_udc_data udc_data;
static struct resource udc_resources[] = {
diff --git a/arch/arm/mach-at91/at91sam9261_devices.c b/arch/arm/mach-at91/at91sam9261_devices.c
index fc59cbd..1e28bed 100644
--- a/arch/arm/mach-at91/at91sam9261_devices.c
+++ b/arch/arm/mach-at91/at91sam9261_devices.c
@@ -87,7 +87,7 @@ void __init at91_add_device_usbh(struct at91_usbh_data *data) {}
* USB Device (Gadget)
* -------------------------------------------------------------------- */
-#ifdef CONFIG_USB_AT91
+#if defined(CONFIG_USB_AT91) || defined(CONFIG_USB_AT91_MODULE)
static struct at91_udc_data udc_data;
static struct resource udc_resources[] = {
diff --git a/arch/arm/mach-at91/at91sam9263_devices.c b/arch/arm/mach-at91/at91sam9263_devices.c
index 7b46b27..618013d 100644
--- a/arch/arm/mach-at91/at91sam9263_devices.c
+++ b/arch/arm/mach-at91/at91sam9263_devices.c
@@ -92,7 +92,7 @@ void __init at91_add_device_usbh(struct at91_usbh_data *data) {}
* USB Device (Gadget)
* -------------------------------------------------------------------- */
-#ifdef CONFIG_USB_AT91
+#if defined(CONFIG_USB_AT91) || defined(CONFIG_USB_AT91_MODULE)
static struct at91_udc_data udc_data;
static struct resource udc_resources[] = {
--
1.7.5.4
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] ARM: at91: USB AT91 gadget registration for module
2012-01-27 10:28 [PATCH] ARM: at91: USB AT91 gadget registration for module Nicolas Ferre
@ 2012-01-27 11:17 ` Karel Znamenacek
2012-01-28 6:53 ` Jean-Christophe PLAGNIOL-VILLARD
1 sibling, 0 replies; 3+ messages in thread
From: Karel Znamenacek @ 2012-01-27 11:17 UTC (permalink / raw)
To: Nicolas Ferre; +Cc: karel, linux-kernel, Nicolas Ferre, stable
OK
Karel
On 27 Jan 2012 at 11:28, Nicolas Ferre wrote:
> Registration of at91_udc as a module will enable SoC
> related code.
>
> Fix following an idea from Karel Znamenacek.
>
> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
> Cc: stable <stable@vger.kernel.org>
> ---
> Karel,
>
> Do you want to add your "Acked-by" line?
>
> arch/arm/mach-at91/at91rm9200_devices.c | 2 +-
> arch/arm/mach-at91/at91sam9260_devices.c | 2 +-
> arch/arm/mach-at91/at91sam9261_devices.c | 2 +-
> arch/arm/mach-at91/at91sam9263_devices.c | 2 +-
> 4 files changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/arch/arm/mach-at91/at91rm9200_devices.c b/arch/arm/mach-at91/at91rm9200_devices.c
> index 18bacec..97676bd 100644
> --- a/arch/arm/mach-at91/at91rm9200_devices.c
> +++ b/arch/arm/mach-at91/at91rm9200_devices.c
> @@ -83,7 +83,7 @@ void __init at91_add_device_usbh(struct at91_usbh_data *data) {}
> * USB Device (Gadget)
> * -------------------------------------------------------------------- */
>
> -#ifdef CONFIG_USB_AT91
> +#if defined(CONFIG_USB_AT91) || defined(CONFIG_USB_AT91_MODULE)
> static struct at91_udc_data udc_data;
>
> static struct resource udc_resources[] = {
> diff --git a/arch/arm/mach-at91/at91sam9260_devices.c b/arch/arm/mach-at91/at91sam9260_devices.c
> index 642ccb6..f1a1bb45 100644
> --- a/arch/arm/mach-at91/at91sam9260_devices.c
> +++ b/arch/arm/mach-at91/at91sam9260_devices.c
> @@ -84,7 +84,7 @@ void __init at91_add_device_usbh(struct at91_usbh_data *data) {}
> * USB Device (Gadget)
> * -------------------------------------------------------------------- */
>
> -#ifdef CONFIG_USB_AT91
> +#if defined(CONFIG_USB_AT91) || defined(CONFIG_USB_AT91_MODULE)
> static struct at91_udc_data udc_data;
>
> static struct resource udc_resources[] = {
> diff --git a/arch/arm/mach-at91/at91sam9261_devices.c b/arch/arm/mach-at91/at91sam9261_devices.c
> index fc59cbd..1e28bed 100644
> --- a/arch/arm/mach-at91/at91sam9261_devices.c
> +++ b/arch/arm/mach-at91/at91sam9261_devices.c
> @@ -87,7 +87,7 @@ void __init at91_add_device_usbh(struct at91_usbh_data *data) {}
> * USB Device (Gadget)
> * -------------------------------------------------------------------- */
>
> -#ifdef CONFIG_USB_AT91
> +#if defined(CONFIG_USB_AT91) || defined(CONFIG_USB_AT91_MODULE)
> static struct at91_udc_data udc_data;
>
> static struct resource udc_resources[] = {
> diff --git a/arch/arm/mach-at91/at91sam9263_devices.c b/arch/arm/mach-at91/at91sam9263_devices.c
> index 7b46b27..618013d 100644
> --- a/arch/arm/mach-at91/at91sam9263_devices.c
> +++ b/arch/arm/mach-at91/at91sam9263_devices.c
> @@ -92,7 +92,7 @@ void __init at91_add_device_usbh(struct at91_usbh_data *data) {}
> * USB Device (Gadget)
> * -------------------------------------------------------------------- */
>
> -#ifdef CONFIG_USB_AT91
> +#if defined(CONFIG_USB_AT91) || defined(CONFIG_USB_AT91_MODULE)
> static struct at91_udc_data udc_data;
>
> static struct resource udc_resources[] = {
> --
> 1.7.5.4
>
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] ARM: at91: USB AT91 gadget registration for module
2012-01-27 10:28 [PATCH] ARM: at91: USB AT91 gadget registration for module Nicolas Ferre
2012-01-27 11:17 ` Karel Znamenacek
@ 2012-01-28 6:53 ` Jean-Christophe PLAGNIOL-VILLARD
1 sibling, 0 replies; 3+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2012-01-28 6:53 UTC (permalink / raw)
To: Nicolas Ferre; +Cc: linux-arm-kernel, karel, linux-kernel, stable
On 11:28 Fri 27 Jan , Nicolas Ferre wrote:
> Registration of at91_udc as a module will enable SoC
> related code.
>
> Fix following an idea from Karel Znamenacek.
>
> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
> Cc: stable <stable@vger.kernel.org>
Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Best Regards,
J.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-01-28 6:53 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-27 10:28 [PATCH] ARM: at91: USB AT91 gadget registration for module Nicolas Ferre
2012-01-27 11:17 ` Karel Znamenacek
2012-01-28 6:53 ` Jean-Christophe PLAGNIOL-VILLARD
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).