Revision 05946bce839b4fed5442dbfab77060fb75e051f3 authored by Anton Vorontsov on 04 July 2008, 16:59:38 UTC, committed by Linus Torvalds on 04 July 2008, 17:40:06 UTC
This patch fixes following build error when CONFIG_PM is set.

  CC      drivers/video/fsl-diu-fb.o
drivers/video/fsl-diu-fb.c: In function 'fsl_diu_suspend':
drivers/video/fsl-diu-fb.c:1327: error: 'ofdev' undeclared (first use in this function)
drivers/video/fsl-diu-fb.c:1327: error: (Each undeclared identifier is reported only once
drivers/video/fsl-diu-fb.c:1327: error: for each function it appears in.)
drivers/video/fsl-diu-fb.c: In function 'fsl_diu_resume':
drivers/video/fsl-diu-fb.c:1337: error: 'ofdev' undeclared (first use in this function)

While I'm at it, also fix this warning:

drivers/video/fsl-diu-fb.c: In function 'fsl_diu_alloc':
drivers/video/fsl-diu-fb.c:314: warning: format '%lx' expects type 'long unsigned int', but argument 3 has type 'phys_addr_t'

And these section mismatches:

..from the function fsl_diu_remove() to the function .exit.text:uninstall_fb()
..from the function fsl_diu_remove() to the function .exit.text:uninstall_fb()
..from the function install_fb() to the variable .devinit.data:fsl_diu_mode_db
..from the function install_fb() to the variable .devinit.data:fsl_diu_mode_db
..from the function fsl_diu_probe() to the function .exit.text:uninstall_fb()
..from the function fsl_diu_probe() to the function .exit.text:uninstall_fb()

Also, some sparse fixes: make two functions static, and use NULL where
appropriate. There are still a lot of sparse warnings, mainly wrt absence
of __iomem annotations, but some will require ugly __force stuff. I'll leave
them for now, since proper fix would be not that trivial as few one-liners
below.

Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
Cc: Timur Tabi <timur@freescale.com>
Cc: Antonino Daplas <adaplas@gmail.com>
Cc: York Sun <yorksun@freescale.com>
Cc: Krzysztof Helt <krzysztof.h1@poczta.fm>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent 7059d4b
History
File Mode Size
Kconfig -rw-r--r-- 9.0 KB
Makefile -rw-r--r-- 1.8 KB
adb-iop.c -rw-r--r-- 6.2 KB
adb.c -rw-r--r-- 19.2 KB
adbhid.c -rw-r--r-- 33.7 KB
ans-lcd.c -rw-r--r-- 3.7 KB
ans-lcd.h -rw-r--r-- 206 bytes
apm_emu.c -rw-r--r-- 3.1 KB
mac_hid.c -rw-r--r-- 3.6 KB
macio-adb.c -rw-r--r-- 6.4 KB
macio_asic.c -rw-r--r-- 18.7 KB
macio_sysfs.c -rw-r--r-- 1.3 KB
mediabay.c -rw-r--r-- 21.4 KB
nvram.c -rw-r--r-- 2.5 KB
rack-meter.c -rw-r--r-- 15.4 KB
smu.c -rw-r--r-- 30.4 KB
therm_adt746x.c -rw-r--r-- 17.1 KB
therm_pm72.c -rw-r--r-- 61.8 KB
therm_pm72.h -rw-r--r-- 9.3 KB
therm_windtunnel.c -rw-r--r-- 12.0 KB
via-cuda.c -rw-r--r-- 15.6 KB
via-macii.c -rw-r--r-- 14.1 KB
via-maciisi.c -rw-r--r-- 15.5 KB
via-pmu-backlight.c -rw-r--r-- 4.4 KB
via-pmu-event.c -rw-r--r-- 2.1 KB
via-pmu-event.h -rw-r--r-- 177 bytes
via-pmu-led.c -rw-r--r-- 3.1 KB
via-pmu.c -rw-r--r-- 60.1 KB
via-pmu68k.c -rw-r--r-- 19.5 KB
windfarm.h -rw-r--r-- 3.7 KB
windfarm_core.c -rw-r--r-- 10.9 KB
windfarm_cpufreq_clamp.c -rw-r--r-- 2.4 KB
windfarm_lm75_sensor.c -rw-r--r-- 5.6 KB
windfarm_max6690_sensor.c -rw-r--r-- 4.3 KB
windfarm_pid.c -rw-r--r-- 3.7 KB
windfarm_pid.h -rw-r--r-- 2.7 KB
windfarm_pm112.c -rw-r--r-- 18.1 KB
windfarm_pm121.c -rw-r--r-- 24.8 KB
windfarm_pm81.c -rw-r--r-- 21.3 KB
windfarm_pm91.c -rw-r--r-- 18.3 KB
windfarm_smu_controls.c -rw-r--r-- 8.0 KB
windfarm_smu_sat.c -rw-r--r-- 8.8 KB
windfarm_smu_sensors.c -rw-r--r-- 11.3 KB

back to top