mirror of
				https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
				synced 2025-10-31 22:26:12 +00:00 
			
		
		
		
	 59f148005c
			
		
	
	
		59f148005c
		
	
	
	
	
		
			
			The SGI PCI-RT card, based on the SGI IOC4 chip, will be made available on Altix XE (x86_64) platforms in the near future. As such it is now a misnomer for the IOC4 base device driver to live under drivers/sn, and would complicate builds for non-SN2. This patch moves the IOC4 base driver code from drivers/sn to drivers/misc, and updates the associated Makefiles and Kconfig files to allow building on non-SN2 configs. Due to the resulting change in link order, it is now necessary to use late_initcall() for IOC4 subdriver initialization. [akpm@osdl.org: __udivdi3 fix] [akpm@osdl.org: fix default in Kconfig] Acked-by: Pat Gefre <pfg@sgi.com> Acked-by: Jeremy Higdon <jeremy@sgi.com> Signed-off-by: Brent Casavant <bcasavan@sgi.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
		
			
				
	
	
		
			82 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			82 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # drivers/Kconfig
 | |
| 
 | |
| menu "Device Drivers"
 | |
| 
 | |
| source "drivers/base/Kconfig"
 | |
| 
 | |
| source "drivers/connector/Kconfig"
 | |
| 
 | |
| source "drivers/mtd/Kconfig"
 | |
| 
 | |
| source "drivers/parport/Kconfig"
 | |
| 
 | |
| source "drivers/pnp/Kconfig"
 | |
| 
 | |
| source "drivers/block/Kconfig"
 | |
| 
 | |
| # misc before ide - BLK_DEV_SGIIOC4 depends on SGI_IOC4
 | |
| 
 | |
| source "drivers/misc/Kconfig"
 | |
| 
 | |
| source "drivers/ide/Kconfig"
 | |
| 
 | |
| source "drivers/scsi/Kconfig"
 | |
| 
 | |
| source "drivers/ata/Kconfig"
 | |
| 
 | |
| source "drivers/cdrom/Kconfig"
 | |
| 
 | |
| source "drivers/md/Kconfig"
 | |
| 
 | |
| source "drivers/message/fusion/Kconfig"
 | |
| 
 | |
| source "drivers/ieee1394/Kconfig"
 | |
| 
 | |
| source "drivers/message/i2o/Kconfig"
 | |
| 
 | |
| source "drivers/macintosh/Kconfig"
 | |
| 
 | |
| source "drivers/net/Kconfig"
 | |
| 
 | |
| source "drivers/isdn/Kconfig"
 | |
| 
 | |
| source "drivers/telephony/Kconfig"
 | |
| 
 | |
| # input before char - char/joystick depends on it. As does USB.
 | |
| 
 | |
| source "drivers/input/Kconfig"
 | |
| 
 | |
| source "drivers/char/Kconfig"
 | |
| 
 | |
| source "drivers/i2c/Kconfig"
 | |
| 
 | |
| source "drivers/spi/Kconfig"
 | |
| 
 | |
| source "drivers/w1/Kconfig"
 | |
| 
 | |
| source "drivers/hwmon/Kconfig"
 | |
| 
 | |
| source "drivers/mfd/Kconfig"
 | |
| 
 | |
| source "drivers/media/Kconfig"
 | |
| 
 | |
| source "drivers/video/Kconfig"
 | |
| 
 | |
| source "sound/Kconfig"
 | |
| 
 | |
| source "drivers/usb/Kconfig"
 | |
| 
 | |
| source "drivers/mmc/Kconfig"
 | |
| 
 | |
| source "drivers/leds/Kconfig"
 | |
| 
 | |
| source "drivers/infiniband/Kconfig"
 | |
| 
 | |
| source "drivers/edac/Kconfig"
 | |
| 
 | |
| source "drivers/rtc/Kconfig"
 | |
| 
 | |
| source "drivers/dma/Kconfig"
 | |
| 
 | |
| endmenu
 |