Skip to content

Commit

Permalink
fbdev: nvidia: remove the dependency on PPC_OF
Browse files Browse the repository at this point in the history
The OF functionality has moved to a common place and be used by many
archs. So we don't need to include the ppc arch specific header files
and depend on PPC_OF option any more. This is a preparation for
killing PPC_OF.

Signed-off-by: Kevin Hao <haokexin@gmail.com>
Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Acked-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
  • Loading branch information
Kevin Hao authored and Michael Ellerman committed Mar 17, 2015
1 parent e9cfb2d commit 5299b62
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 17 deletions.
3 changes: 1 addition & 2 deletions drivers/video/fbdev/nvidia/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@
obj-$(CONFIG_FB_NVIDIA) += nvidiafb.o

nvidiafb-y := nvidia.o nv_hw.o nv_setup.o \
nv_accel.o
nv_accel.o nv_of.o
nvidiafb-$(CONFIG_FB_NVIDIA_I2C) += nv_i2c.o
nvidiafb-$(CONFIG_FB_NVIDIA_BACKLIGHT) += nv_backlight.o
nvidiafb-$(CONFIG_PPC_OF) += nv_of.o

nvidiafb-objs := $(nvidiafb-y)
3 changes: 0 additions & 3 deletions drivers/video/fbdev/nvidia/nv_of.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@

#include <asm/io.h>

#include <asm/prom.h>
#include <asm/pci-bridge.h>

#include "nv_type.h"
#include "nv_local.h"
#include "nv_proto.h"
Expand Down
8 changes: 0 additions & 8 deletions drivers/video/fbdev/nvidia/nv_proto.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,16 +42,8 @@ int nvidia_probe_i2c_connector(struct fb_info *info, int conn,
#define nvidia_probe_i2c_connector(p, c, edid) (-1)
#endif

#ifdef CONFIG_PPC_OF
int nvidia_probe_of_connector(struct fb_info *info, int conn,
u8 ** out_edid);
#else
static inline int nvidia_probe_of_connector(struct fb_info *info, int conn,
u8 ** out_edid)
{
return -1;
}
#endif

/* in nv_accel.c */
extern void NVResetGraphics(struct fb_info *info);
Expand Down
4 changes: 0 additions & 4 deletions drivers/video/fbdev/nvidia/nvidia.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,6 @@
#ifdef CONFIG_MTRR
#include <asm/mtrr.h>
#endif
#ifdef CONFIG_PPC_OF
#include <asm/prom.h>
#include <asm/pci-bridge.h>
#endif
#ifdef CONFIG_BOOTX_TEXT
#include <asm/btext.h>
#endif
Expand Down

0 comments on commit 5299b62

Please sign in to comment.