Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[PATCH] fbdev: edid.h cleanups

This patch removes some completely unused code.

Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Antonino Daplas <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by

Adrian Bunk and committed by
Linus Torvalds
5f76be80 917bb077

-14
-1
arch/i386/boot/compressed/misc.c
··· 12 12 #include <linux/linkage.h> 13 13 #include <linux/vmalloc.h> 14 14 #include <linux/tty.h> 15 - #include <video/edid.h> 16 15 #include <asm/io.h> 17 16 18 17 /*
-1
drivers/video/fbmon.c
··· 34 34 #include <asm/prom.h> 35 35 #include <asm/pci-bridge.h> 36 36 #endif 37 - #include <video/edid.h> 38 37 #include "edid.h" 39 38 40 39 /*
-3
drivers/video/vesafb.c
··· 19 19 #include <linux/fb.h> 20 20 #include <linux/ioport.h> 21 21 #include <linux/init.h> 22 - #ifdef __i386__ 23 - #include <video/edid.h> 24 - #endif 25 22 #include <asm/io.h> 26 23 #include <asm/mtrr.h> 27 24
-9
include/video/edid.h
··· 4 4 #ifdef __KERNEL__ 5 5 6 6 #include <linux/config.h> 7 - #ifdef CONFIG_PPC_OF 8 - #include <linux/pci.h> 9 - #endif 10 7 11 8 #ifdef CONFIG_X86 12 9 struct edid_info { ··· 11 14 }; 12 15 13 16 extern struct edid_info edid_info; 14 - extern char *get_EDID_from_BIOS(void *); 15 - 16 17 #endif /* CONFIG_X86 */ 17 - 18 - #ifdef CONFIG_PPC_OF 19 - extern char *get_EDID_from_OF(struct pci_dev *pdev); 20 - #endif 21 18 22 19 #endif /* __KERNEL__ */ 23 20