[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20120130185518.GA493@redhat.com>
Date: Mon, 30 Jan 2012 13:55:18 -0500
From: Dave Jones <davej@...hat.com>
To: Randy Dunlap <rdunlap@...otime.net>
Cc: Stephen Rothwell <sfr@...b.auug.org.au>,
linux-next@...r.kernel.org, LKML <linux-kernel@...r.kernel.org>,
Hiroshi Miura <miura@...cha.org>, cpufreq@...r.kernel.org
Subject: Re: [PATCH -next] cpufreq: fix gx-suspmod.c build
On Mon, Jan 30, 2012 at 11:40:50AM -0800, Randy Dunlap wrote:
> From: Randy Dunlap <rdunlap@...otime.net>
>
> Fix build error & warnings:
Needs to go through Andi, or Greg, or whoever is carrying those
cpu device autoload patches now. (I lost track)
Dave
> drivers/cpufreq/gx-suspmod.c:175:35: error: macro "MODULE_DEVICE_TABLE" requires 2 arguments, but only 1 given
> drivers/cpufreq/gx-suspmod.c:175:1: warning: data definition has no type or storage class
> drivers/cpufreq/gx-suspmod.c:175:1: warning: type defaults to 'int' in declaration of 'MODULE_DEVICE_TABLE'
>
> Signed-off-by: Randy Dunlap <rdunlap@...otime.net>
> Cc: Hiroshi Miura <miura@...cha.org>
> Cc: Dave Jones <davej@...hat.com>
> Cc: cpufreq@...r.kernel.org
> ---
> drivers/cpufreq/gx-suspmod.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> --- linux-next-20120130.orig/drivers/cpufreq/gx-suspmod.c
> +++ linux-next-20120130/drivers/cpufreq/gx-suspmod.c
> @@ -172,7 +172,7 @@ static struct pci_device_id gx_chipset_t
> { PCI_VDEVICE(CYRIX, PCI_DEVICE_ID_CYRIX_5510), },
> { 0, },
> };
> -MODULE_DEVICE_TABLE(gx_chipset_tbl);
> +MODULE_DEVICE_TABLE(x86cpu, gx_chipset_tbl);
>
> static void gx_write_byte(int reg, int value)
> {
---end quoted text---
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists