mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 05:50:17 +00:00 
			
		
		
		
	Fix up the style of a few comments and add/clarify a few others. Signed-off-by: Simon Glass <sjg@chromium.org>
		
			
				
	
	
		
			29 lines
		
	
	
		
			546 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			546 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2013 Google, Inc
 | 
						|
 *
 | 
						|
 * (C) Copyright 2012
 | 
						|
 * Pavel Herrmann <morpheus.ibis@gmail.com>
 | 
						|
 * Marek Vasut <marex@denx.de>
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier:	GPL-2.0+
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef _DM_PLATDATA_H
 | 
						|
#define _DM_PLATDATA_H
 | 
						|
 | 
						|
/**
 | 
						|
 * struct driver_info - Information required to instantiate a device
 | 
						|
 *
 | 
						|
 * @name:	Device name
 | 
						|
 * @platdata:	Driver-specific platform data
 | 
						|
 */
 | 
						|
struct driver_info {
 | 
						|
	const char *name;
 | 
						|
	const void *platdata;
 | 
						|
};
 | 
						|
 | 
						|
#define U_BOOT_DEVICE(__name)						\
 | 
						|
	ll_entry_declare(struct driver_info, __name, driver_info)
 | 
						|
 | 
						|
#endif
 |