linux-media.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Mauro Carvalho Chehab <mchehab@redhat.com>
To: stefan.ringel@arcor.de
Cc: linux-media@vger.kernel.org, d.belimov@gmail.com
Subject: Re: [PATCH] tm6000: bugfix unkown symbol tm6000_debug
Date: Fri, 04 Jun 2010 21:04:22 -0300	[thread overview]
Message-ID: <4C099486.50908@redhat.com> (raw)
In-Reply-To: <1275580158-18878-1-git-send-email-stefan.ringel@arcor.de>

Em 03-06-2010 12:49, stefan.ringel@arcor.de escreveu:
> From: Stefan Ringel <stefan.ringel@arcor.de>
> 
> May 30 07:54:09 linux-v5dy kernel: [ 2555.727426] tm6000: Unknown symbol
> tm6000_debug

This won't work, since the same module will have diferent tm6000_debug vars.

I'll write a proper fix and submit shortly, together with some patches I've made
for alsa.

> 
> Signed-off-by: Stefan Ringel <stefan.ringel@arcor.de>
> ---
>  drivers/staging/tm6000/tm6000-core.c  |    2 ++
>  drivers/staging/tm6000/tm6000-dvb.c   |    4 ++--
>  drivers/staging/tm6000/tm6000-video.c |    2 +-
>  drivers/staging/tm6000/tm6000.h       |    2 --
>  4 files changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/staging/tm6000/tm6000-core.c b/drivers/staging/tm6000/tm6000-core.c
> index 2fbf4f6..350770e 100644
> --- a/drivers/staging/tm6000/tm6000-core.c
> +++ b/drivers/staging/tm6000/tm6000-core.c
> @@ -29,6 +29,8 @@
>  #include <media/v4l2-common.h>
>  #include <media/tuner.h>
>  
> +static int tm6000_debug;
> +
>  #define USB_TIMEOUT	5*HZ /* ms */
>  
>  int tm6000_read_write_usb(struct tm6000_core *dev, u8 req_type, u8 req,
> diff --git a/drivers/staging/tm6000/tm6000-dvb.c b/drivers/staging/tm6000/tm6000-dvb.c
> index 3ccc466..34dc8e5 100644
> --- a/drivers/staging/tm6000/tm6000-dvb.c
> +++ b/drivers/staging/tm6000/tm6000-dvb.c
> @@ -38,9 +38,9 @@ MODULE_SUPPORTED_DEVICE("{{Trident, tm5600},"
>  			"{{Trident, tm6000},"
>  			"{{Trident, tm6010}");
>  
> -static int debug
> +static int tm6000_debug;
>  
> -module_param(debug, int, 0644);
> +module_param_named(debug, tm6000_debug, int, 0644);
>  MODULE_PARM_DESC(debug, "enable debug message");
>  
>  static inline void print_err_status(struct tm6000_core *dev,
> diff --git a/drivers/staging/tm6000/tm6000-video.c b/drivers/staging/tm6000/tm6000-video.c
> index 1e348ac..1663dd2 100644
> --- a/drivers/staging/tm6000/tm6000-video.c
> +++ b/drivers/staging/tm6000/tm6000-video.c
> @@ -55,7 +55,7 @@ static unsigned int vid_limit = 16;	/* Video memory limit, in Mb */
>  static int video_nr = -1;		/* /dev/videoN, -1 for autodetect */
>  
>  /* Debug level */
> -int tm6000_debug;
> +static int tm6000_debug;
>  
>  /* supported controls */
>  static struct v4l2_queryctrl tm6000_qctrl[] = {
> diff --git a/drivers/staging/tm6000/tm6000.h b/drivers/staging/tm6000/tm6000.h
> index 4b65094..ed7fece 100644
> --- a/drivers/staging/tm6000/tm6000.h
> +++ b/drivers/staging/tm6000/tm6000.h
> @@ -318,8 +318,6 @@ int tm6000_queue_init(struct tm6000_core *dev);
>  
>  /* Debug stuff */
>  
> -extern int tm6000_debug;
> -
>  #define dprintk(dev, level, fmt, arg...) do {\
>  	if (tm6000_debug & level) \
>  		printk(KERN_INFO "(%lu) %s %s :"fmt, jiffies, \


      reply	other threads:[~2010-06-05  0:04 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-06-03 15:49 [PATCH] tm6000: bugfix unkown symbol tm6000_debug stefan.ringel
2010-06-05  0:04 ` Mauro Carvalho Chehab [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4C099486.50908@redhat.com \
    --to=mchehab@redhat.com \
    --cc=d.belimov@gmail.com \
    --cc=linux-media@vger.kernel.org \
    --cc=stefan.ringel@arcor.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).