libpayload: libcbfs: Fix legacy CBFS API, typos
get_cbfs_header expects CBFS_HEADER_INVALID_ADDRESS (0xffffffff) instead of NULL when something is wrong. Also, fix typo. Change-Id: Ibe56c9eab3b9fdfc6d0b14bc848ca75f3a4fc2f1 Signed-off-by: Patrick Georgi <patrick@georgi-clan.de> Reviewed-on: http://review.coreboot.org/2455 Tested-by: build bot (Jenkins) Reviewed-by: Peter Stuge <peter@stuge.se>
This commit is contained in:
		
				
					committed by
					
						
						Peter Stuge
					
				
			
			
				
	
			
			
			
						parent
						
							82682d50ec
						
					
				
				
					commit
					46cb96bb88
				
			@@ -62,8 +62,8 @@ const struct cbfs_header *cbfs_get_header(struct cbfs_media *media)
 | 
			
		||||
	if (media == CBFS_DEFAULT_MEDIA) {
 | 
			
		||||
		media = &default_media;
 | 
			
		||||
		if (init_default_cbfs_media(media) != 0) {
 | 
			
		||||
			ERROR("Failed to initializee default media.\n");
 | 
			
		||||
			return NULL;
 | 
			
		||||
			ERROR("Failed to initialize default media.\n");
 | 
			
		||||
			return CBFS_HEADER_INVALID_ADDRESS;
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
@@ -103,7 +103,7 @@ struct cbfs_file *cbfs_get_file(struct cbfs_media *media, const char *name)
 | 
			
		||||
	if (media == CBFS_DEFAULT_MEDIA) {
 | 
			
		||||
		media = &default_media;
 | 
			
		||||
		if (init_default_cbfs_media(media) != 0) {
 | 
			
		||||
			ERROR("Failed to initializee default media.\n");
 | 
			
		||||
			ERROR("Failed to initialize default media.\n");
 | 
			
		||||
			return NULL;
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user