[PATCH] powerpc: Fix mpc52xx_gpt when sysfs is not configured
From: Michael Neuling <hidden>
Date: 2009-03-05 06:03:59
From: Michael Neuling <hidden>
Date: 2009-03-05 06:03:59
mpc52xx_gpt_create_attribs is missing a parameter name and shouldn't return anything since it's void. Signed-off-by: Michael Neuling <redacted> --- This is against benh's testing tree arch/powerpc/platforms/52xx/mpc52xx_gpt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: clone1/arch/powerpc/platforms/52xx/mpc52xx_gpt.c ===================================================================
--- clone1.orig/arch/powerpc/platforms/52xx/mpc52xx_gpt.c
+++ clone1/arch/powerpc/platforms/52xx/mpc52xx_gpt.c@@ -370,7 +370,7 @@ static void mpc52xx_gpt_create_attribs(s } #else /* defined(CONFIG_SYSFS) */ -static void mpc52xx_gpt_create_attribs(struct mpc52xx_gpt_priv *) { return 0; } +static void mpc52xx_gpt_create_attribs(struct mpc52xx_gpt_priv *gpt) {} #endif /* defined(CONFIG_SYSFS) */ /* ---------------------------------------------------------------------