mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 12:07:31 +00:00 
			
		
		
		
	 2fc979cb9d
			
		
	
	
		2fc979cb9d
		
	
	
	
	
		
			
			This reverts commit f79081b4b7.
Patch has broken byteorder handling: RAMFBCfg fields are in bigendian
byteorder, the reset function doesn't care so native byteorder is used
instead.  Given this went unnoticed so far the feature is obviously
unused, so just revert the patch.
Cc: Hou Qiming <hqm03ster@gmail.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Acked-by: Laszlo Ersek <lersek@redhat.com>
Message-id: 20200429115236.28709-2-kraxel@redhat.com
		
	
			
		
			
				
	
	
		
			13 lines
		
	
	
		
			266 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			266 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef RAMFB_H
 | |
| #define RAMFB_H
 | |
| 
 | |
| /* ramfb.c */
 | |
| typedef struct RAMFBState RAMFBState;
 | |
| void ramfb_display_update(QemuConsole *con, RAMFBState *s);
 | |
| RAMFBState *ramfb_setup(Error **errp);
 | |
| 
 | |
| /* ramfb-standalone.c */
 | |
| #define TYPE_RAMFB_DEVICE "ramfb"
 | |
| 
 | |
| #endif /* RAMFB_H */
 |