diff options
author | Ben Dooks <ben-linux@fluff.org> | 2008-04-19 16:08:43 +0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-04-19 17:04:36 +0400 |
commit | 140749e2bf8d7c80a50c9fcce1435bb2b4e423c4 (patch) | |
tree | 1abe5ed33f5728a31c23a4f42b7ef3156200c288 /arch/arm/mach-s3c2410/mach-bast.c | |
parent | eb1f7d10d6b6728c87f79f30d1ae844d01d3486a (diff) | |
download | linux-140749e2bf8d7c80a50c9fcce1435bb2b4e423c4.tar.xz |
[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 <ben-linux@fluff.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-s3c2410/mach-bast.c')
-rw-r--r-- | arch/arm/mach-s3c2410/mach-bast.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, }; |