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-- 6.2 KB
Makefile -rw-r--r-- 1.2 KB
allocpercpu.c -rw-r--r-- 3.9 KB
backing-dev.c -rw-r--r-- 6.9 KB
bootmem.c -rw-r--r-- 14.9 KB
bounce.c -rw-r--r-- 6.4 KB
dmapool.c -rw-r--r-- 12.9 KB
fadvise.c -rw-r--r-- 2.9 KB
filemap.c -rw-r--r-- 68.9 KB
filemap_xip.c -rw-r--r-- 10.0 KB
fremap.c -rw-r--r-- 6.1 KB
highmem.c -rw-r--r-- 8.6 KB
hugetlb.c -rw-r--r-- 33.6 KB
internal.h -rw-r--r-- 1.6 KB
maccess.c -rw-r--r-- 1.4 KB
madvise.c -rw-r--r-- 9.5 KB
memcontrol.c -rw-r--r-- 27.5 KB
memory.c -rw-r--r-- 78.1 KB
memory_hotplug.c -rw-r--r-- 18.6 KB
mempolicy.c -rw-r--r-- 58.8 KB
mempool.c -rw-r--r-- 9.0 KB
migrate.c -rw-r--r-- 24.8 KB
mincore.c -rw-r--r-- 5.7 KB
mlock.c -rw-r--r-- 5.6 KB
mmap.c -rw-r--r-- 58.7 KB
mmzone.c -rw-r--r-- 1.5 KB
mprotect.c -rw-r--r-- 7.6 KB
mremap.c -rw-r--r-- 10.8 KB
msync.c -rw-r--r-- 2.4 KB
nommu.c -rw-r--r-- 34.7 KB
oom_kill.c -rw-r--r-- 15.3 KB
page-writeback.c -rw-r--r-- 36.3 KB
page_alloc.c -rw-r--r-- 125.1 KB
page_io.c -rw-r--r-- 3.4 KB
page_isolation.c -rw-r--r-- 3.4 KB
pagewalk.c -rw-r--r-- 3.2 KB
pdflush.c -rw-r--r-- 6.3 KB
prio_tree.c -rw-r--r-- 6.3 KB
quicklist.c -rw-r--r-- 2.3 KB
readahead.c -rw-r--r-- 13.4 KB
rmap.c -rw-r--r-- 27.6 KB
shmem.c -rw-r--r-- 65.8 KB
shmem_acl.c -rw-r--r-- 4.6 KB
slab.c -rw-r--r-- 115.4 KB
slob.c -rw-r--r-- 15.9 KB
slub.c -rw-r--r-- 105.2 KB
sparse-vmemmap.c -rw-r--r-- 4.1 KB
sparse.c -rw-r--r-- 13.2 KB
swap.c -rw-r--r-- 13.2 KB
swap_state.c -rw-r--r-- 9.7 KB
swapfile.c -rw-r--r-- 45.3 KB
thrash.c -rw-r--r-- 2.0 KB
tiny-shmem.c -rw-r--r-- 2.9 KB
truncate.c -rw-r--r-- 13.0 KB
util.c -rw-r--r-- 2.7 KB
vmalloc.c -rw-r--r-- 22.2 KB
vmscan.c -rw-r--r-- 57.0 KB
vmstat.c -rw-r--r-- 20.0 KB

back to top