mirror of
https://github.com/torvalds/linux.git
synced 2024-11-20 02:51:44 +00:00
5299b62097
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>
13 lines
352 B
Makefile
13 lines
352 B
Makefile
#
|
|
# Makefile for the nVidia framebuffer driver
|
|
#
|
|
|
|
obj-$(CONFIG_FB_NVIDIA) += nvidiafb.o
|
|
|
|
nvidiafb-y := nvidia.o nv_hw.o nv_setup.o \
|
|
nv_accel.o nv_of.o
|
|
nvidiafb-$(CONFIG_FB_NVIDIA_I2C) += nv_i2c.o
|
|
nvidiafb-$(CONFIG_FB_NVIDIA_BACKLIGHT) += nv_backlight.o
|
|
|
|
nvidiafb-objs := $(nvidiafb-y)
|