mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	Remove all #inclusions of asm/system.h preparatory to splitting and killing it. Performed with the following command: perl -p -i -e 's!^#\s*include\s*<asm/system[.]h>.*\n!!' `grep -Irl '^#\s*include\s*<asm/system[.]h>' *` Signed-off-by: David Howells <dhowells@redhat.com>
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			300 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			300 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* Configuration space parsing helpers for virtio.
 | 
						|
 *
 | 
						|
 * The configuration is [type][len][... len bytes ...] fields.
 | 
						|
 *
 | 
						|
 * Copyright 2007 Rusty Russell, IBM Corporation.
 | 
						|
 * GPL v2 or later.
 | 
						|
 */
 | 
						|
#include <linux/err.h>
 | 
						|
#include <linux/virtio.h>
 | 
						|
#include <linux/virtio_config.h>
 | 
						|
#include <linux/bug.h>
 | 
						|
 |