 32df8dca50
			
		
	
	
	32df8dca50
	
	
	
		
			
			HAVE_ARCH_DEVTREE_FIXUPS appears to always be needed except for sparc, but it is only used for /proc/device-teee and sparc does not enable /proc/device-tree. So this option is redundant. Remove the option and always enable it. This has the side effect of fixing /proc/device-tree on arches such as arm64 which failed to define this option. Signed-off-by: Rob Herring <rob.herring@calxeda.com> Acked-by: Vineet Gupta <vgupta@synopsys.com> Acked-by: Grant Likely <grant.likely@linaro.org> Cc: Russell King <linux@arm.linux.org.uk> Cc: James Hogan <james.hogan@imgtec.com> Cc: Michal Simek <monstr@monstr.eu> Cc: Jonas Bonn <jonas@southpole.se> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Paul Mackerras <paulus@samba.org> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Ingo Molnar <mingo@redhat.com> Cc: "H. Peter Anvin" <hpa@zytor.com> Cc: x86@kernel.org Cc: Chris Zankel <chris@zankel.net> Cc: Max Filippov <jcmvbkbc@gmail.com>
		
			
				
	
	
		
			27 lines
		
	
	
	
		
			713 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
	
		
			713 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * Definitions for talking to the Open Firmware PROM on
 | |
|  * Power Macintosh computers.
 | |
|  *
 | |
|  * Copyright (C) 1996-2005 Paul Mackerras.
 | |
|  *
 | |
|  * Updates for PPC64 by Peter Bergner & David Engebretsen, IBM Corp.
 | |
|  *
 | |
|  * This program is free software; you can redistribute it and/or
 | |
|  * modify it under the terms of the GNU General Public License
 | |
|  * as published by the Free Software Foundation; either version
 | |
|  * 2 of the License, or (at your option) any later version.
 | |
|  */
 | |
| #ifndef _ASM_MICROBLAZE_PROM_H
 | |
| #define _ASM_MICROBLAZE_PROM_H
 | |
| 
 | |
| #include <linux/of.h>
 | |
| 
 | |
| /* Other Prototypes */
 | |
| enum early_consoles {
 | |
| 	UARTLITE = 1,
 | |
| 	UART16550 = 2,
 | |
| };
 | |
| 
 | |
| extern int of_early_console(void *version);
 | |
| 
 | |
| #endif /* _ASM_MICROBLAZE_PROM_H */
 |