public inbox for kernel-janitors@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] usb/serial/generic: Fix compile error
@ 2010-04-11 15:29 Javier Martinez Canillas
  2010-04-12  3:04 ` Dmitry Torokhov
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Javier Martinez Canillas @ 2010-04-11 15:29 UTC (permalink / raw)
  To: kernel-janitors

usb/serial/generic.c gives me a compile error when CONFIG_MAGIC_SYSRQ is
not defined.

The problem is that usb_serial_handle_sysrq_char() calls handle_sysrq()
that only is defined if CONFIG_MAGIC_SYSRQ is defined.

This patch add an empty handle_sysrq inline function if
CONFIG_MAGIC_SYSRQ is not defined and generic.c compiles cleanly.

From 9c484ab9136f25bf55b7664116a5f3b78eae69dc Mon Sep 17 00:00:00 2001
From: Javier Martinez Canillas <martinez.javier@gmail.com>
Date: Sun, 11 Apr 2010 11:14:22 -0400
Subject: [PATCH] usb/serial/generic: Fix compile error


Signed-off-by: Javier Martinez Canillas <martinez.javier@gmail.com>
---
 include/linux/sysrq.h |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/include/linux/sysrq.h b/include/linux/sysrq.h
index 5f2bdef..0b754c1 100644
--- a/include/linux/sysrq.h
+++ b/include/linux/sysrq.h
@@ -53,6 +53,11 @@ int sysrq_toggle_support(int enable_mask);
 
 #else
 
+static inline void handle_sysrq(int key, struct tty_struct *tty)
+{
+
+}
+
 static inline int register_sysrq_key(int key, struct sysrq_key_op *op)
 {
 	return -EINVAL;
-- 
1.6.0.4











^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH] usb/serial/generic: Fix compile error
  2010-04-11 15:29 [PATCH] usb/serial/generic: Fix compile error Javier Martinez Canillas
@ 2010-04-12  3:04 ` Dmitry Torokhov
  2010-04-12  3:59 ` Javier Martinez Canillas
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Dmitry Torokhov @ 2010-04-12  3:04 UTC (permalink / raw)
  To: kernel-janitors

Hi Javier,

On Sun, Apr 11, 2010 at 11:29:02AM -0400, Javier Martinez Canillas wrote:
> usb/serial/generic.c gives me a compile error when CONFIG_MAGIC_SYSRQ is
> not defined.
> 
> The problem is that usb_serial_handle_sysrq_char() calls handle_sysrq()
> that only is defined if CONFIG_MAGIC_SYSRQ is defined.
> 
> This patch add an empty handle_sysrq inline function if
> CONFIG_MAGIC_SYSRQ is not defined and generic.c compiles cleanly.
> 

Thanks for the patch. I will fold it into the one where I managed to
loose the static inline if you do not mind.

-- 
Dmitry

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] usb/serial/generic: Fix compile error
  2010-04-11 15:29 [PATCH] usb/serial/generic: Fix compile error Javier Martinez Canillas
  2010-04-12  3:04 ` Dmitry Torokhov
@ 2010-04-12  3:59 ` Javier Martinez Canillas
  2010-04-14 15:45 ` Randy Dunlap
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Javier Martinez Canillas @ 2010-04-12  3:59 UTC (permalink / raw)
  To: kernel-janitors

On Sun, Apr 11, 2010 at 11:04 PM, Dmitry Torokhov
<dmitry.torokhov@gmail.com> wrote:
>
> Thanks for the patch. I will fold it into the one where I managed to
> loose the static inline if you do not mind.
>
> --

I don't mind, it's ok for me.
Thank you very much for the quick answer.

Best regards,

-----------------------------------------
Javier Martínez Canillas
+595 981 88 66 58
--
To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] usb/serial/generic: Fix compile error
  2010-04-11 15:29 [PATCH] usb/serial/generic: Fix compile error Javier Martinez Canillas
  2010-04-12  3:04 ` Dmitry Torokhov
  2010-04-12  3:59 ` Javier Martinez Canillas
@ 2010-04-14 15:45 ` Randy Dunlap
  2010-04-14 15:59 ` Dmitry Torokhov
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Randy Dunlap @ 2010-04-14 15:45 UTC (permalink / raw)
  To: kernel-janitors

On Sun, 11 Apr 2010 20:04:46 -0700 Dmitry Torokhov wrote:

> Hi Javier,
> 
> On Sun, Apr 11, 2010 at 11:29:02AM -0400, Javier Martinez Canillas wrote:
> > usb/serial/generic.c gives me a compile error when CONFIG_MAGIC_SYSRQ is
> > not defined.
> > 
> > The problem is that usb_serial_handle_sysrq_char() calls handle_sysrq()
> > that only is defined if CONFIG_MAGIC_SYSRQ is defined.
> > 
> > This patch add an empty handle_sysrq inline function if
> > CONFIG_MAGIC_SYSRQ is not defined and generic.c compiles cleanly.
> > 
> 
> Thanks for the patch. I will fold it into the one where I managed to
> loose the static inline if you do not mind.

can we get this patch into linux-next also, please?
It still fails in 2 places when MAGIC_SYSRQ is disabled.

---
~Randy

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] usb/serial/generic: Fix compile error
  2010-04-11 15:29 [PATCH] usb/serial/generic: Fix compile error Javier Martinez Canillas
                   ` (2 preceding siblings ...)
  2010-04-14 15:45 ` Randy Dunlap
@ 2010-04-14 15:59 ` Dmitry Torokhov
  2010-04-14 16:07 ` Randy Dunlap
  2010-04-14 16:24 ` Dmitry Torokhov
  5 siblings, 0 replies; 7+ messages in thread
From: Dmitry Torokhov @ 2010-04-14 15:59 UTC (permalink / raw)
  To: kernel-janitors

On Wed, Apr 14, 2010 at 08:45:19AM -0700, Randy Dunlap wrote:
> On Sun, 11 Apr 2010 20:04:46 -0700 Dmitry Torokhov wrote:
> 
> > Hi Javier,
> > 
> > On Sun, Apr 11, 2010 at 11:29:02AM -0400, Javier Martinez Canillas wrote:
> > > usb/serial/generic.c gives me a compile error when CONFIG_MAGIC_SYSRQ is
> > > not defined.
> > > 
> > > The problem is that usb_serial_handle_sysrq_char() calls handle_sysrq()
> > > that only is defined if CONFIG_MAGIC_SYSRQ is defined.
> > > 
> > > This patch add an empty handle_sysrq inline function if
> > > CONFIG_MAGIC_SYSRQ is not defined and generic.c compiles cleanly.
> > > 
> > 
> > Thanks for the patch. I will fold it into the one where I managed to
> > loose the static inline if you do not mind.
> 
> can we get this patch into linux-next also, please?
> It still fails in 2 places when MAGIC_SYSRQ is disabled.
> 

Should be there...

-- 
Dmitry

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] usb/serial/generic: Fix compile error
  2010-04-11 15:29 [PATCH] usb/serial/generic: Fix compile error Javier Martinez Canillas
                   ` (3 preceding siblings ...)
  2010-04-14 15:59 ` Dmitry Torokhov
@ 2010-04-14 16:07 ` Randy Dunlap
  2010-04-14 16:24 ` Dmitry Torokhov
  5 siblings, 0 replies; 7+ messages in thread
From: Randy Dunlap @ 2010-04-14 16:07 UTC (permalink / raw)
  To: kernel-janitors

On Wed, 14 Apr 2010 08:59:53 -0700 Dmitry Torokhov wrote:

> On Wed, Apr 14, 2010 at 08:45:19AM -0700, Randy Dunlap wrote:
> > On Sun, 11 Apr 2010 20:04:46 -0700 Dmitry Torokhov wrote:
> > 
> > > Hi Javier,
> > > 
> > > On Sun, Apr 11, 2010 at 11:29:02AM -0400, Javier Martinez Canillas wrote:
> > > > usb/serial/generic.c gives me a compile error when CONFIG_MAGIC_SYSRQ is
> > > > not defined.
> > > > 
> > > > The problem is that usb_serial_handle_sysrq_char() calls handle_sysrq()
> > > > that only is defined if CONFIG_MAGIC_SYSRQ is defined.
> > > > 
> > > > This patch add an empty handle_sysrq inline function if
> > > > CONFIG_MAGIC_SYSRQ is not defined and generic.c compiles cleanly.
> > > > 
> > > 
> > > Thanks for the patch. I will fold it into the one where I managed to
> > > loose the static inline if you do not mind.
> > 
> > can we get this patch into linux-next also, please?
> > It still fails in 2 places when MAGIC_SYSRQ is disabled.
> > 
> 
> Should be there...

It's not in linux-next-20100414.

---
~Randy

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] usb/serial/generic: Fix compile error
  2010-04-11 15:29 [PATCH] usb/serial/generic: Fix compile error Javier Martinez Canillas
                   ` (4 preceding siblings ...)
  2010-04-14 16:07 ` Randy Dunlap
@ 2010-04-14 16:24 ` Dmitry Torokhov
  5 siblings, 0 replies; 7+ messages in thread
From: Dmitry Torokhov @ 2010-04-14 16:24 UTC (permalink / raw)
  To: kernel-janitors

On Wed, Apr 14, 2010 at 09:07:40AM -0700, Randy Dunlap wrote:
> On Wed, 14 Apr 2010 08:59:53 -0700 Dmitry Torokhov wrote:
> 
> > On Wed, Apr 14, 2010 at 08:45:19AM -0700, Randy Dunlap wrote:
> > > On Sun, 11 Apr 2010 20:04:46 -0700 Dmitry Torokhov wrote:
> > > 
> > > > Hi Javier,
> > > > 
> > > > On Sun, Apr 11, 2010 at 11:29:02AM -0400, Javier Martinez Canillas wrote:
> > > > > usb/serial/generic.c gives me a compile error when CONFIG_MAGIC_SYSRQ is
> > > > > not defined.
> > > > > 
> > > > > The problem is that usb_serial_handle_sysrq_char() calls handle_sysrq()
> > > > > that only is defined if CONFIG_MAGIC_SYSRQ is defined.
> > > > > 
> > > > > This patch add an empty handle_sysrq inline function if
> > > > > CONFIG_MAGIC_SYSRQ is not defined and generic.c compiles cleanly.
> > > > > 
> > > > 
> > > > Thanks for the patch. I will fold it into the one where I managed to
> > > > loose the static inline if you do not mind.
> > > 
> > > can we get this patch into linux-next also, please?
> > > It still fails in 2 places when MAGIC_SYSRQ is disabled.
> > > 
> > 
> > Should be there...
> 
> It's not in linux-next-20100414.
> 

I see it in by 'next' branch, let's see if it shows up in the next next.

-- 
Dmitry

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2010-04-14 16:24 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-11 15:29 [PATCH] usb/serial/generic: Fix compile error Javier Martinez Canillas
2010-04-12  3:04 ` Dmitry Torokhov
2010-04-12  3:59 ` Javier Martinez Canillas
2010-04-14 15:45 ` Randy Dunlap
2010-04-14 15:59 ` Dmitry Torokhov
2010-04-14 16:07 ` Randy Dunlap
2010-04-14 16:24 ` Dmitry Torokhov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox