public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: davinci-linux-open-source@linux.davincidsp.com
Cc: Prabhakar Lad <prabhakar.lad@ti.com>,
	LMML <linux-media@vger.kernel.org>,
	linux-kernel@vger.kernel.org,
	Mauro Carvalho Chehab <mchehab@infradead.org>
Subject: Re: [PATCH v2] media: davinci: fix section mismatch warnings
Date: Tue, 14 Aug 2012 09:59:30 +0200	[thread overview]
Message-ID: <2395694.On0fVyqEU3@avalon> (raw)
In-Reply-To: <1344921789-16647-1-git-send-email-prabhakar.lad@ti.com>

Hi Prabhakar,

Thanks for the patch.

On Tuesday 14 August 2012 10:53:09 Prabhakar Lad wrote:
> From: Lad, Prabhakar <prabhakar.lad@ti.com>
> 
> This patch fixes section mismatch warnings for
> davinci video drivers.
> 
> Signed-off-by: Lad, Prabhakar <prabhakar.lad@ti.com>
> Signed-off-by: Manjunath Hadli <manjunath.hadli@ti.com>

Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>

> ---
>  Changes for v2:
>  1: Annotate probe with __devinit.
>  2: Fixed the commit message.
> 
>  drivers/media/video/davinci/dm355_ccdc.c   |    2 +-
>  drivers/media/video/davinci/dm644x_ccdc.c  |    2 +-
>  drivers/media/video/davinci/isif.c         |    2 +-
>  drivers/media/video/davinci/vpfe_capture.c |    2 +-
>  drivers/media/video/davinci/vpif.c         |    2 +-
>  drivers/media/video/davinci/vpss.c         |    2 +-
>  6 files changed, 6 insertions(+), 6 deletions(-)
> 
> diff --git a/drivers/media/video/davinci/dm355_ccdc.c
> b/drivers/media/video/davinci/dm355_ccdc.c index 5b68847..ce0e413 100644
> --- a/drivers/media/video/davinci/dm355_ccdc.c
> +++ b/drivers/media/video/davinci/dm355_ccdc.c
> @@ -965,7 +965,7 @@ static struct ccdc_hw_device ccdc_hw_dev = {
>  	},
>  };
> 
> -static int __init dm355_ccdc_probe(struct platform_device *pdev)
> +static int __devinit dm355_ccdc_probe(struct platform_device *pdev)
>  {
>  	void (*setup_pinmux)(void);
>  	struct resource	*res;
> diff --git a/drivers/media/video/davinci/dm644x_ccdc.c
> b/drivers/media/video/davinci/dm644x_ccdc.c index 9303fe5..ee7942b 100644
> --- a/drivers/media/video/davinci/dm644x_ccdc.c
> +++ b/drivers/media/video/davinci/dm644x_ccdc.c
> @@ -957,7 +957,7 @@ static struct ccdc_hw_device ccdc_hw_dev = {
>  	},
>  };
> 
> -static int __init dm644x_ccdc_probe(struct platform_device *pdev)
> +static int __devinit dm644x_ccdc_probe(struct platform_device *pdev)
>  {
>  	struct resource	*res;
>  	int status = 0;
> diff --git a/drivers/media/video/davinci/isif.c
> b/drivers/media/video/davinci/isif.c index 5278fe7..b99d542 100644
> --- a/drivers/media/video/davinci/isif.c
> +++ b/drivers/media/video/davinci/isif.c
> @@ -1032,7 +1032,7 @@ static struct ccdc_hw_device isif_hw_dev = {
>  	},
>  };
> 
> -static int __init isif_probe(struct platform_device *pdev)
> +static int __devinit isif_probe(struct platform_device *pdev)
>  {
>  	void (*setup_pinmux)(void);
>  	struct resource	*res;
> diff --git a/drivers/media/video/davinci/vpfe_capture.c
> b/drivers/media/video/davinci/vpfe_capture.c index 49a845f..843b138 100644
> --- a/drivers/media/video/davinci/vpfe_capture.c
> +++ b/drivers/media/video/davinci/vpfe_capture.c
> @@ -1829,7 +1829,7 @@ static struct vpfe_device *vpfe_initialize(void)
>   * itself to the V4L2 driver and initializes fields of each
>   * device objects
>   */
> -static __init int vpfe_probe(struct platform_device *pdev)
> +static __devinit int vpfe_probe(struct platform_device *pdev)
>  {
>  	struct vpfe_subdev_info *sdinfo;
>  	struct vpfe_config *vpfe_cfg;
> diff --git a/drivers/media/video/davinci/vpif.c
> b/drivers/media/video/davinci/vpif.c index b3637af..9bd3caa 100644
> --- a/drivers/media/video/davinci/vpif.c
> +++ b/drivers/media/video/davinci/vpif.c
> @@ -417,7 +417,7 @@ int vpif_channel_getfid(u8 channel_id)
>  }
>  EXPORT_SYMBOL(vpif_channel_getfid);
> 
> -static int __init vpif_probe(struct platform_device *pdev)
> +static int __devinit vpif_probe(struct platform_device *pdev)
>  {
>  	int status = 0;
> 
> diff --git a/drivers/media/video/davinci/vpss.c
> b/drivers/media/video/davinci/vpss.c index 3e5cf27..146e4b0 100644
> --- a/drivers/media/video/davinci/vpss.c
> +++ b/drivers/media/video/davinci/vpss.c
> @@ -357,7 +357,7 @@ void dm365_vpss_set_pg_frame_size(struct
> vpss_pg_frame_size frame_size) }
>  EXPORT_SYMBOL(dm365_vpss_set_pg_frame_size);
> 
> -static int __init vpss_probe(struct platform_device *pdev)
> +static int __devinit vpss_probe(struct platform_device *pdev)
>  {
>  	struct resource		*r1, *r2;
>  	char *platform_name;
-- 
Regards,

Laurent Pinchart


      reply	other threads:[~2012-08-14  7:59 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-08-14  5:23 [PATCH v2] media: davinci: fix section mismatch warnings Prabhakar Lad
2012-08-14  7:59 ` Laurent Pinchart [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=2395694.On0fVyqEU3@avalon \
    --to=laurent.pinchart@ideasonboard.com \
    --cc=davinci-linux-open-source@linux.davincidsp.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=mchehab@infradead.org \
    --cc=prabhakar.lad@ti.com \
    /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