Most of the 9p code is now virtio agnostic. This patch does a final cleanup: - drop references to Virtio from the header comments - fix includes Also drop a couple of leading empty lines while here. Signed-off-by: Greg Kurz <gkurz@linux.vnet.ibm.com>
		
			
				
	
	
		
			22 lines
		
	
	
		
			382 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			382 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * 9p
 | 
						|
 *
 | 
						|
 * Copyright IBM, Corp. 2010
 | 
						|
 *
 | 
						|
 * Authors:
 | 
						|
 *  Gautham R Shenoy <ego@in.ibm.com>
 | 
						|
 *
 | 
						|
 * This work is licensed under the terms of the GNU GPL, version 2.  See
 | 
						|
 * the COPYING file in the top-level directory.
 | 
						|
 *
 | 
						|
 */
 | 
						|
#include "qemu/osdep.h"
 | 
						|
#include "qemu-fsdev.h"
 | 
						|
#include "qemu/config-file.h"
 | 
						|
#include "qemu/module.h"
 | 
						|
 | 
						|
int qemu_fsdev_add(QemuOpts *opts)
 | 
						|
{
 | 
						|
    return 0;
 | 
						|
}
 |