linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 36/36] drivers/staging/line6/config.h: Delete CHECKPOINT macro
@ 2012-05-07 18:27 Johannes Thumshirn
  2012-05-07 18:43 ` Greg KH
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Johannes Thumshirn @ 2012-05-07 18:27 UTC (permalink / raw)
  To: gregkh, devel, linux-kernel
  Cc: grabner, andor.daam, thomas, jj, stefanha, Johannes Thumshirn

Kill unused debugging macro CHECKPOINT

Signed-off-by: Johannes Thumshirn <morbidrsa@googlemail.com>
---
 drivers/staging/line6/config.h |    5 -----
 1 files changed, 0 insertions(+), 5 deletions(-)

diff --git a/drivers/staging/line6/config.h b/drivers/staging/line6/config.h
index a82d8bf..2493491 100644
--- a/drivers/staging/line6/config.h
+++ b/drivers/staging/line6/config.h
@@ -34,11 +34,6 @@
 #define CREATE_RAW_FILE      0
 
 #if DO_DEBUG_MESSAGES
-#define CHECKPOINT pr_info("line6usb: %s (%s:%d)\n", \
-			  __func__, __FILE__, __LINE__)
-#endif
-
-#if DO_DEBUG_MESSAGES
 #define DEBUG_MESSAGES(x) (x)
 #else
 #define DEBUG_MESSAGES(x)
-- 
1.7.7.6


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

* Re: [PATCH 36/36] drivers/staging/line6/config.h: Delete CHECKPOINT macro
  2012-05-07 18:27 [PATCH 36/36] drivers/staging/line6/config.h: Delete CHECKPOINT macro Johannes Thumshirn
@ 2012-05-07 18:43 ` Greg KH
  2012-05-09 20:51 ` Greg KH
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 7+ messages in thread
From: Greg KH @ 2012-05-07 18:43 UTC (permalink / raw)
  To: Johannes Thumshirn
  Cc: devel, linux-kernel, grabner, andor.daam, thomas, jj, stefanha

On Mon, May 07, 2012 at 08:27:53PM +0200, Johannes Thumshirn wrote:
> Kill unused debugging macro CHECKPOINT
> 
> Signed-off-by: Johannes Thumshirn <morbidrsa@googlemail.com>
> ---

Where are the other 36 patches in this series?

confused,

greg k-h

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

* Re: [PATCH 36/36] drivers/staging/line6/config.h: Delete CHECKPOINT macro
  2012-05-07 18:27 [PATCH 36/36] drivers/staging/line6/config.h: Delete CHECKPOINT macro Johannes Thumshirn
  2012-05-07 18:43 ` Greg KH
@ 2012-05-09 20:51 ` Greg KH
  2012-05-10 16:30 ` [PATCH] drivers/staging/line6/config.h: Remove " Johannes Thumshirn
  2012-05-10 17:12 ` Johannes Thumshirn
  3 siblings, 0 replies; 7+ messages in thread
From: Greg KH @ 2012-05-09 20:51 UTC (permalink / raw)
  To: Johannes Thumshirn
  Cc: devel, linux-kernel, stefanha, andor.daam, grabner, jj, thomas

On Mon, May 07, 2012 at 08:27:53PM +0200, Johannes Thumshirn wrote:
> Kill unused debugging macro CHECKPOINT
> 
> Signed-off-by: Johannes Thumshirn <morbidrsa@googlemail.com>
> ---
>  drivers/staging/line6/config.h |    5 -----
>  1 files changed, 0 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/staging/line6/config.h b/drivers/staging/line6/config.h
> index a82d8bf..2493491 100644
> --- a/drivers/staging/line6/config.h
> +++ b/drivers/staging/line6/config.h
> @@ -34,11 +34,6 @@
>  #define CREATE_RAW_FILE      0
>  
>  #if DO_DEBUG_MESSAGES
> -#define CHECKPOINT pr_info("line6usb: %s (%s:%d)\n", \
> -			  __func__, __FILE__, __LINE__)
> -#endif

This patch doesn't apply as it seems to depend on a patch that is not in
my tree anywhere :(

greg k-h

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

* [PATCH] drivers/staging/line6/config.h: Remove CHECKPOINT macro
  2012-05-07 18:27 [PATCH 36/36] drivers/staging/line6/config.h: Delete CHECKPOINT macro Johannes Thumshirn
  2012-05-07 18:43 ` Greg KH
  2012-05-09 20:51 ` Greg KH
@ 2012-05-10 16:30 ` Johannes Thumshirn
  2012-05-10 16:49   ` Greg KH
  2012-05-10 17:12 ` Johannes Thumshirn
  3 siblings, 1 reply; 7+ messages in thread
From: Johannes Thumshirn @ 2012-05-10 16:30 UTC (permalink / raw)
  To: gregkh, devel, linux-kernel
  Cc: grabner, andor.daam, thomas, jj, stefanha, Johannes Thumshirn

Kill unused debugging macro CHECKPOINT
---
 drivers/staging/line6/config.h |    5 -----
 1 files changed, 0 insertions(+), 5 deletions(-)

diff --git a/drivers/staging/line6/config.h b/drivers/staging/line6/config.h
index f8a5149..2493491 100644
--- a/drivers/staging/line6/config.h
+++ b/drivers/staging/line6/config.h
@@ -34,11 +34,6 @@
 #define CREATE_RAW_FILE      0
 
 #if DO_DEBUG_MESSAGES
-#define CHECKPOINT printk(KERN_INFO "line6usb: %s (%s:%d)\n", \
-			  __func__, __FILE__, __LINE__)
-#endif
-
-#if DO_DEBUG_MESSAGES
 #define DEBUG_MESSAGES(x) (x)
 #else
 #define DEBUG_MESSAGES(x)
-- 
1.7.7.6


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

* Re: [PATCH] drivers/staging/line6/config.h: Remove CHECKPOINT macro
  2012-05-10 16:30 ` [PATCH] drivers/staging/line6/config.h: Remove " Johannes Thumshirn
@ 2012-05-10 16:49   ` Greg KH
  2012-05-10 20:43     ` Markus Grabner
  0 siblings, 1 reply; 7+ messages in thread
From: Greg KH @ 2012-05-10 16:49 UTC (permalink / raw)
  To: Johannes Thumshirn
  Cc: devel, linux-kernel, grabner, andor.daam, thomas, jj, stefanha

On Thu, May 10, 2012 at 06:30:10PM +0200, Johannes Thumshirn wrote:
> Kill unused debugging macro CHECKPOINT
> ---
>  drivers/staging/line6/config.h |    5 -----
>  1 files changed, 0 insertions(+), 5 deletions(-)

-ENOSIGNED_OFF_BY_LINE :(

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

* [PATCH] drivers/staging/line6/config.h: Remove CHECKPOINT macro
  2012-05-07 18:27 [PATCH 36/36] drivers/staging/line6/config.h: Delete CHECKPOINT macro Johannes Thumshirn
                   ` (2 preceding siblings ...)
  2012-05-10 16:30 ` [PATCH] drivers/staging/line6/config.h: Remove " Johannes Thumshirn
@ 2012-05-10 17:12 ` Johannes Thumshirn
  3 siblings, 0 replies; 7+ messages in thread
From: Johannes Thumshirn @ 2012-05-10 17:12 UTC (permalink / raw)
  To: gregkh, devel, linux-kernel
  Cc: grabner, andor.daam, thomas, jj, stefanha, Johannes Thumshirn

Kill unused debugging macro CHECKPOINT

Signed-off-by: Johannes Thumshirn <morbidrsa@googlemail.com>
---
 drivers/staging/line6/config.h |    5 -----
 1 files changed, 0 insertions(+), 5 deletions(-)

diff --git a/drivers/staging/line6/config.h b/drivers/staging/line6/config.h
index f8a5149..2493491 100644
--- a/drivers/staging/line6/config.h
+++ b/drivers/staging/line6/config.h
@@ -34,11 +34,6 @@
 #define CREATE_RAW_FILE      0
 
 #if DO_DEBUG_MESSAGES
-#define CHECKPOINT printk(KERN_INFO "line6usb: %s (%s:%d)\n", \
-			  __func__, __FILE__, __LINE__)
-#endif
-
-#if DO_DEBUG_MESSAGES
 #define DEBUG_MESSAGES(x) (x)
 #else
 #define DEBUG_MESSAGES(x)
-- 
1.7.7.6


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

* Re: [PATCH] drivers/staging/line6/config.h: Remove CHECKPOINT macro
  2012-05-10 16:49   ` Greg KH
@ 2012-05-10 20:43     ` Markus Grabner
  0 siblings, 0 replies; 7+ messages in thread
From: Markus Grabner @ 2012-05-10 20:43 UTC (permalink / raw)
  To: Greg KH
  Cc: Johannes Thumshirn, devel, linux-kernel, andor.daam, thomas, jj,
	stefanha

On Thursday 10 May 2012 09:49:53 Greg KH wrote:
> On Thu, May 10, 2012 at 06:30:10PM +0200, Johannes Thumshirn wrote:
> > Kill unused debugging macro CHECKPOINT
> > ---
> > 
> >  drivers/staging/line6/config.h |    5 -----
> >  1 files changed, 0 insertions(+), 5 deletions(-)
> 
> -ENOSIGNED_OFF_BY_LINE :(
The file "config.h" can be removed altogether, it is not included by any other 
file in the Line6 USB driver.

	Kind regards,
		Markus


-- 
Markus Grabner
Institute for Computer Graphics and Vision
Graz University of Technology, Inffeldgasse 16a/II, 8010 Graz, Austria
WWW: http://www.icg.tugraz.at/Members/grabner


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

end of thread, other threads:[~2012-05-10 21:07 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-05-07 18:27 [PATCH 36/36] drivers/staging/line6/config.h: Delete CHECKPOINT macro Johannes Thumshirn
2012-05-07 18:43 ` Greg KH
2012-05-09 20:51 ` Greg KH
2012-05-10 16:30 ` [PATCH] drivers/staging/line6/config.h: Remove " Johannes Thumshirn
2012-05-10 16:49   ` Greg KH
2012-05-10 20:43     ` Markus Grabner
2012-05-10 17:12 ` Johannes Thumshirn

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).