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
iscsi_if.h -rw-r--r-- 10.9 KB
iscsi_proto.h -rw-r--r-- 14.9 KB
libiscsi.h -rw-r--r-- 11.5 KB
libsas.h -rw-r--r-- 17.4 KB
libsrp.h -rw-r--r-- 1.5 KB
sas.h -rw-r--r-- 11.7 KB
sas_ata.h -rw-r--r-- 1.6 KB
scsi.h -rw-r--r-- 15.2 KB
scsi_cmnd.h -rw-r--r-- 6.2 KB
scsi_dbg.h -rw-r--r-- 968 bytes
scsi_device.h -rw-r--r-- 14.5 KB
scsi_devinfo.h -rw-r--r-- 1.9 KB
scsi_driver.h -rw-r--r-- 995 bytes
scsi_eh.h -rw-r--r-- 2.7 KB
scsi_host.h -rw-r--r-- 23.5 KB
scsi_ioctl.h -rw-r--r-- 1.2 KB
scsi_netlink.h -rw-r--r-- 2.6 KB
scsi_netlink_fc.h -rw-r--r-- 1.9 KB
scsi_tcq.h -rw-r--r-- 4.1 KB
scsi_tgt.h -rw-r--r-- 807 bytes
scsi_tgt_if.h -rw-r--r-- 2.5 KB
scsi_transport.h -rw-r--r-- 3.9 KB
scsi_transport_fc.h -rw-r--r-- 23.0 KB
scsi_transport_iscsi.h -rw-r--r-- 8.9 KB
scsi_transport_sas.h -rw-r--r-- 6.1 KB
scsi_transport_spi.h -rw-r--r-- 6.9 KB
scsi_transport_srp.h -rw-r--r-- 902 bytes
scsicam.h -rw-r--r-- 674 bytes
sd.h -rw-r--r-- 1.5 KB
sg.h -rw-r--r-- 14.0 KB
srp.h -rw-r--r-- 5.5 KB

back to top