diff options
author | Robert Reif <reif@earthlink.net> | 2008-05-08 21:37:30 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-05-08 21:37:30 -0700 |
commit | 6cd5a86b56ec8fc8651c043bdb05ea0c662fb704 (patch) | |
tree | 30ba1d4946654f55570ebb69a7286d2cb72fd7a2 /drivers/video/p9100.c | |
parent | dc5dc7e6d71ca9fd1ea01a1418150af3b2937489 (diff) | |
download | linux-3.10-6cd5a86b56ec8fc8651c043bdb05ea0c662fb704.tar.gz linux-3.10-6cd5a86b56ec8fc8651c043bdb05ea0c662fb704.tar.bz2 linux-3.10-6cd5a86b56ec8fc8651c043bdb05ea0c662fb704.zip |
sparc video: remove open boot prom code
Replace remaining open boot prom code with of.
Boot tested on sparc32 and compile tested on sparc64.
Signed-off-by: Robert Reif <reif@earthlink.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/video/p9100.c')
-rw-r--r-- | drivers/video/p9100.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/video/p9100.c b/drivers/video/p9100.c index 676ffb06d1c..9e903454ffc 100644 --- a/drivers/video/p9100.c +++ b/drivers/video/p9100.c @@ -15,10 +15,9 @@ #include <linux/init.h> #include <linux/fb.h> #include <linux/mm.h> +#include <linux/of_device.h> #include <asm/io.h> -#include <asm/prom.h> -#include <asm/of_device.h> #include <asm/fbio.h> #include "sbuslib.h" @@ -275,7 +274,7 @@ static int __devinit p9100_probe(struct of_device *op, const struct of_device_id par->physbase = op->resource[2].start; par->which_io = op->resource[2].flags & IORESOURCE_BITS; - sbusfb_fill_var(&info->var, dp->node, 8); + sbusfb_fill_var(&info->var, dp, 8); info->var.red.length = 8; info->var.green.length = 8; info->var.blue.length = 8; |