summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Morton2005-11-14 01:06:31 +0100
committerLinus Torvalds2005-11-14 03:14:10 +0100
commitc53ca784dc3e72a17dc210bee0361e13ad83d4cd (patch)
tree287609492338e589c0abd584ed6b6488ef65c0ed
parent[PATCH] Update email address for Kumar (diff)
downloadkernel-qcow2-linux-c53ca784dc3e72a17dc210bee0361e13ad83d4cd.tar.gz
kernel-qcow2-linux-c53ca784dc3e72a17dc210bee0361e13ad83d4cd.tar.xz
kernel-qcow2-linux-c53ca784dc3e72a17dc210bee0361e13ad83d4cd.zip
[PATCH] nv_of.c build fix
drivers/video/nvidia/nv_of.c:33: error: redefinition of `nvidia_probe_of_connector' drivers/video/nvidia/nv_proto.h:51: error: `nvidia_probe_of_connector' previously defined here Because the inline version depends on !CONFIG_FB_OF and the out-of-line version depends on CONFIG_PPC_OF. Ben said: "Yes, CONFIG_PPC_OF is the right one, must be a typo." Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> C: "Antonino A. Daplas" <adaplas@pol.net> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r--drivers/video/nvidia/nv_proto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/nvidia/nv_proto.h b/drivers/video/nvidia/nv_proto.h
index f60b1f432270..3353103e8b0b 100644
--- a/drivers/video/nvidia/nv_proto.h
+++ b/drivers/video/nvidia/nv_proto.h
@@ -42,7 +42,7 @@ int nvidia_probe_i2c_connector(struct fb_info *info, int conn,
#define nvidia_probe_i2c_connector(p, c, edid) (-1)
#endif
-#ifdef CONFIG_FB_OF
+#ifdef CONFIG_PPC_OF
int nvidia_probe_of_connector(struct fb_info *info, int conn,
u8 ** out_edid);
#else