From: Hanjun Guo Date: Tue, 13 Aug 2013 10:20:08 +0000 (+0800) Subject: cpufreq / gx: Fix gx_detect_chipset() __init attribute location X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=af97385ad4054fc2f2e1eddfe3d9f4a12e36e051;p=sagit-ice-cold%2Fkernel_xiaomi_msm8998.git cpufreq / gx: Fix gx_detect_chipset() __init attribute location __init belongs after the return type on functions, not before it. Signed-off-by: Hanjun Guo Signed-off-by: Rafael J. Wysocki --- diff --git a/drivers/cpufreq/gx-suspmod.c b/drivers/cpufreq/gx-suspmod.c index ef5fee7dc0b3..70442c7b5e71 100644 --- a/drivers/cpufreq/gx-suspmod.c +++ b/drivers/cpufreq/gx-suspmod.c @@ -183,7 +183,7 @@ static void gx_write_byte(int reg, int value) * gx_detect_chipset: * **/ -static __init struct pci_dev *gx_detect_chipset(void) +static struct pci_dev * __init gx_detect_chipset(void) { struct pci_dev *gx_pci = NULL;