diff options
author | Lad, Prabhakar <prabhakar.csengg@gmail.com> | 2014-11-26 23:07:23 +0100 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2014-12-04 14:41:18 +0100 |
commit | a16a96d032b434ea348a3978fc160e2d8a3f3e42 (patch) | |
tree | 9de0f070010cdf3d5b4ea2437366eceeb0f70c9c /drivers/video/fbdev/vt8623fb.c | |
parent | video: fbdev-MMP: Fix a typo for the word "destroyed" (diff) | |
download | linux-a16a96d032b434ea348a3978fc160e2d8a3f3e42.tar.xz linux-a16a96d032b434ea348a3978fc160e2d8a3f3e42.zip |
video: fbdev: vt8623fb: suppress build warning
this patch fixes following build warning:
drivers/video/fbdev/vt8623fb.c: In function ‘vt8623_pci_probe’:
drivers/video/fbdev/vt8623fb.c:734:23: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
par->state.vgabase = (void __iomem *) vga_res.start;
^
Signed-off-by: Lad, Prabhakar <prabhakar.csengg@gmail.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/fbdev/vt8623fb.c')
-rw-r--r-- | drivers/video/fbdev/vt8623fb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/fbdev/vt8623fb.c b/drivers/video/fbdev/vt8623fb.c index 5c7cbc6c6236..ea7f056ed5fe 100644 --- a/drivers/video/fbdev/vt8623fb.c +++ b/drivers/video/fbdev/vt8623fb.c @@ -731,7 +731,7 @@ static int vt8623_pci_probe(struct pci_dev *dev, const struct pci_device_id *id) pcibios_bus_to_resource(dev->bus, &vga_res, &bus_reg); - par->state.vgabase = (void __iomem *) vga_res.start; + par->state.vgabase = (void __iomem *) (unsigned long) vga_res.start; /* Find how many physical memory there is on card */ memsize1 = (vga_rseq(par->state.vgabase, 0x34) + 1) >> 1; |