diff options
author | Holger Schurig <h.schurig@mn-solutions.de> | 2008-02-11 10:52:30 -0500 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-02-17 05:42:09 -0500 |
commit | ac2bf5bdc6ab9d820152623122973ccb1c166031 (patch) | |
tree | a58830d8f5f973b45acd3527ce03fbc6bc50b88e /drivers/video/pxafb.c | |
parent | d6a7b5f84b5c15617010e06c95129fe8800e6b21 (diff) |
[ARM] 4828/1: fix 3 warnings in drivers/video/pxafb.c
* Silence a debug output.
* Silence three sparse warnings, one still left.
Signed-off-by: Holger Schurig <hs4233@mail.mn-solutions.de>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'drivers/video/pxafb.c')
-rw-r--r-- | drivers/video/pxafb.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/video/pxafb.c b/drivers/video/pxafb.c index 10f912df2dad..97facb121c73 100644 --- a/drivers/video/pxafb.c +++ b/drivers/video/pxafb.c | |||
@@ -1046,7 +1046,7 @@ pxafb_freq_policy(struct notifier_block *nb, unsigned long val, void *data) | |||
1046 | switch (val) { | 1046 | switch (val) { |
1047 | case CPUFREQ_ADJUST: | 1047 | case CPUFREQ_ADJUST: |
1048 | case CPUFREQ_INCOMPATIBLE: | 1048 | case CPUFREQ_INCOMPATIBLE: |
1049 | printk(KERN_DEBUG "min dma period: %d ps, " | 1049 | pr_debug("min dma period: %d ps, " |
1050 | "new clock %d kHz\n", pxafb_display_dma_period(var), | 1050 | "new clock %d kHz\n", pxafb_display_dma_period(var), |
1051 | policy->max); | 1051 | policy->max); |
1052 | // TODO: fill in min/max values | 1052 | // TODO: fill in min/max values |
@@ -1361,7 +1361,7 @@ static int __init pxafb_parse_options(struct device *dev, char *options) | |||
1361 | } | 1361 | } |
1362 | #endif | 1362 | #endif |
1363 | 1363 | ||
1364 | int __init pxafb_probe(struct platform_device *dev) | 1364 | static int __init pxafb_probe(struct platform_device *dev) |
1365 | { | 1365 | { |
1366 | struct pxafb_info *fbi; | 1366 | struct pxafb_info *fbi; |
1367 | struct pxafb_mach_info *inf; | 1367 | struct pxafb_mach_info *inf; |
@@ -1486,7 +1486,7 @@ static struct platform_driver pxafb_driver = { | |||
1486 | }; | 1486 | }; |
1487 | 1487 | ||
1488 | #ifndef MODULE | 1488 | #ifndef MODULE |
1489 | int __devinit pxafb_setup(char *options) | 1489 | static int __devinit pxafb_setup(char *options) |
1490 | { | 1490 | { |
1491 | # ifdef CONFIG_FB_PXA_PARAMETERS | 1491 | # ifdef CONFIG_FB_PXA_PARAMETERS |
1492 | if (options) | 1492 | if (options) |
@@ -1501,7 +1501,7 @@ MODULE_PARM_DESC(options, "LCD parameters (see Documentation/fb/pxafb.txt)"); | |||
1501 | # endif | 1501 | # endif |
1502 | #endif | 1502 | #endif |
1503 | 1503 | ||
1504 | int __devinit pxafb_init(void) | 1504 | static int __devinit pxafb_init(void) |
1505 | { | 1505 | { |
1506 | #ifndef MODULE | 1506 | #ifndef MODULE |
1507 | char *option = NULL; | 1507 | char *option = NULL; |