From 140749e2bf8d7c80a50c9fcce1435bb2b4e423c4 Mon Sep 17 00:00:00 2001 From: Ben Dooks Date: Sat, 19 Apr 2008 13:08:43 +0100 Subject: [ARM] 5005/1: BAST: Fix kset_name initialiser Fix the pm sys device .name initialiser which was missed when updating the last patch submission. Signed-off-by: Ben Dooks Signed-off-by: Russell King --- arch/arm/mach-s3c2410/mach-bast.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-s3c2410/mach-bast.c b/arch/arm/mach-s3c2410/mach-bast.c index 518727d0dfcc..661a2358ac22 100644 --- a/arch/arm/mach-s3c2410/mach-bast.c +++ b/arch/arm/mach-s3c2410/mach-bast.c @@ -259,7 +259,7 @@ static int bast_pm_resume(struct sys_device *sd) #endif static struct sysdev_class bast_pm_sysclass = { - set_kset_name("mach-bast"), + .name = "mach-bast", .suspend = bast_pm_suspend, .resume = bast_pm_resume, }; -- cgit v1.2.3-59-g8ed1b