diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-08-03 14:58:08 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-08-03 14:58:08 -0700 |
commit | 1a3f2ea336b784d7df750a7821f514f3dea69e29 (patch) | |
tree | b7c2f5c7cc841d9f7b38fbdf03219b80dba97ea2 /drivers | |
parent | e1d7e7fcf8625857de6b48975096c127e5cb1534 (diff) | |
parent | 6ba60d2195cd65d72eaf7ce3903a707c5bf20c7b (diff) | |
download | linux-stable-1a3f2ea336b784d7df750a7821f514f3dea69e29.tar.gz linux-stable-1a3f2ea336b784d7df750a7821f514f3dea69e29.tar.bz2 linux-stable-1a3f2ea336b784d7df750a7821f514f3dea69e29.zip |
Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6
* 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6:
[SPARC]: Fix O_CLOEXEC values.
[SPARC32]: Fix modular build of floppy driver.
[SOUND] CS4231 SBus: Two fixes.
[CG6]: fix memory size detection
[SPARC64]: Add missing dma_sync_single_range_for_*().
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/video/cg6.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/video/cg6.c b/drivers/video/cg6.c index 87c747123538..ee9046db9c7d 100644 --- a/drivers/video/cg6.c +++ b/drivers/video/cg6.c @@ -677,6 +677,7 @@ static int __devinit cg6_probe(struct of_device *op, const struct of_device_id * struct fb_info *info; struct cg6_par *par; int linebytes, err; + int dblbuf; info = framebuffer_alloc(sizeof(struct cg6_par), &op->dev); @@ -698,7 +699,9 @@ static int __devinit cg6_probe(struct of_device *op, const struct of_device_id * linebytes = of_getintprop_default(dp, "linebytes", info->var.xres); par->fbsize = PAGE_ALIGN(linebytes * info->var.yres); - if (of_find_property(dp, "dblbuf", NULL)) + + dblbuf = of_getintprop_default(dp, "dblbuf", 0); + if (dblbuf) par->fbsize *= 4; par->fbc = of_ioremap(&op->resource[0], CG6_FBC_OFFSET, |