mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	init/Kconfig: make COMPILE_TEST depend on !S390
While allmodconfig and allyesconfig build for s390 there are also
various bots running compile tests with randconfig, where PCI is
disabled. This reveals that a lot of drivers should actually depend on
HAS_IOMEM.
Adding this to each device driver would be a never ending story,
therefore just disable COMPILE_TEST for s390.
The reasoning is more or less the same as described in
commit bc083a64b6 ("init/Kconfig: make COMPILE_TEST depend on !UML").
Reported-by: kernel test robot <lkp@intel.com>
Suggested-by: Arnd Bergmann <arnd@kernel.org>
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
			
			
This commit is contained in:
		
							parent
							
								
									12bb4c6823
								
							
						
					
					
						commit
						334ef6ed06
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -110,7 +110,7 @@ config INIT_ENV_ARG_LIMIT
 | 
				
			||||||
 | 
					
 | 
				
			||||||
config COMPILE_TEST
 | 
					config COMPILE_TEST
 | 
				
			||||||
	bool "Compile also drivers which will not load"
 | 
						bool "Compile also drivers which will not load"
 | 
				
			||||||
	depends on !UML
 | 
						depends on !UML && !S390
 | 
				
			||||||
	default n
 | 
						default n
 | 
				
			||||||
	help
 | 
						help
 | 
				
			||||||
	  Some drivers can be compiled on a different platform than they are
 | 
						  Some drivers can be compiled on a different platform than they are
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue