mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	sh: don't allow non-coherent DMA for NOMMU
The code handling non-coherent DMA depends on being able to remap code as non-cached. But that can't be done without an MMU, so using this option on NOMMU builds is broken. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Rich Felker <dalias@libc.org>
This commit is contained in:
		
							parent
							
								
									846f9e1fb9
								
							
						
					
					
						commit
						cd57d07b1e
					
				
					 1 changed files with 2 additions and 1 deletions
				
			
		| 
						 | 
					@ -61,6 +61,7 @@ config SUPERH
 | 
				
			||||||
	select MAY_HAVE_SPARSE_IRQ
 | 
						select MAY_HAVE_SPARSE_IRQ
 | 
				
			||||||
	select MODULES_USE_ELF_RELA
 | 
						select MODULES_USE_ELF_RELA
 | 
				
			||||||
	select NEED_SG_DMA_LENGTH
 | 
						select NEED_SG_DMA_LENGTH
 | 
				
			||||||
 | 
						select NO_DMA if !MMU && !DMA_COHERENT
 | 
				
			||||||
	select NO_GENERIC_PCI_IOPORT_MAP if PCI
 | 
						select NO_GENERIC_PCI_IOPORT_MAP if PCI
 | 
				
			||||||
	select OLD_SIGACTION
 | 
						select OLD_SIGACTION
 | 
				
			||||||
	select OLD_SIGSUSPEND
 | 
						select OLD_SIGSUSPEND
 | 
				
			||||||
| 
						 | 
					@ -135,7 +136,7 @@ config DMA_COHERENT
 | 
				
			||||||
	bool
 | 
						bool
 | 
				
			||||||
 | 
					
 | 
				
			||||||
config DMA_NONCOHERENT
 | 
					config DMA_NONCOHERENT
 | 
				
			||||||
	def_bool !DMA_COHERENT
 | 
						def_bool !NO_DMA && !DMA_COHERENT
 | 
				
			||||||
	select ARCH_HAS_SYNC_DMA_FOR_DEVICE
 | 
						select ARCH_HAS_SYNC_DMA_FOR_DEVICE
 | 
				
			||||||
 | 
					
 | 
				
			||||||
config PGTABLE_LEVELS
 | 
					config PGTABLE_LEVELS
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue