diff options
author | Ben Dooks <ben@simtec.co.uk> | 2009-04-17 12:36:44 +0100 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2009-04-17 12:42:24 +0100 |
commit | ad14ff37496baa4bee98ea99db8bb8615c648b49 (patch) | |
tree | 9e71cbc3df7838eb55fc07618ce0a45b869e9e16 | |
parent | ec5cfbfc05b180a026b4ebce72f341ee196de262 (diff) | |
download | op-kernel-dev-ad14ff37496baa4bee98ea99db8bb8615c648b49.zip op-kernel-dev-ad14ff37496baa4bee98ea99db8bb8615c648b49.tar.gz |
[ARM] S3C: Fix sparse warning from missing 's3c_device_hwmon'
Fix the following sparse warning due to s3c_device_hwmon being
missing from <plat/devs.h>
devs.c:380:24: warning: symbol 's3c_device_hwmon' was not declared. Should it be static?
Signed-off-by: Ben Dooks <ben@simtec.co.uk>
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
-rw-r--r-- | arch/arm/plat-s3c/include/plat/devs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/plat-s3c/include/plat/devs.h b/arch/arm/plat-s3c/include/plat/devs.h index 6b1b523..26f0cec 100644 --- a/arch/arm/plat-s3c/include/plat/devs.h +++ b/arch/arm/plat-s3c/include/plat/devs.h @@ -34,6 +34,7 @@ extern struct platform_device s3c_device_iis; extern struct platform_device s3c_device_rtc; extern struct platform_device s3c_device_adc; extern struct platform_device s3c_device_sdi; +extern struct platform_device s3c_device_hwmon; extern struct platform_device s3c_device_hsmmc0; extern struct platform_device s3c_device_hsmmc1; extern struct platform_device s3c_device_hsmmc2; |