diff options
author | Hanjun Guo <hanjun.guo@linaro.org> | 2013-08-13 18:20:08 +0800 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2013-08-14 22:24:23 +0200 |
commit | af97385ad4054fc2f2e1eddfe3d9f4a12e36e051 (patch) | |
tree | 2e4a171f4443d21689b7d6215c5b4e348ebb2107 /drivers/cpufreq/gx-suspmod.c | |
parent | 8ee3f8e038d4261f70940364415c0680f4014eb6 (diff) |
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 <hanjun.guo@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/cpufreq/gx-suspmod.c')
-rw-r--r-- | drivers/cpufreq/gx-suspmod.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |