mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	The host parameter is not used in the body of mmc_sd_get_csd(), so let's remove it. Update related code at the same time. Signed-off-by: Yue Hu <huyue2@yulong.com> Link: https://lore.kernel.org/r/20210118084520.241-1-zbestahu@gmail.com Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			533 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			533 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0 */
 | 
						|
#ifndef _MMC_CORE_SD_H
 | 
						|
#define _MMC_CORE_SD_H
 | 
						|
 | 
						|
#include <linux/types.h>
 | 
						|
 | 
						|
extern struct device_type sd_type;
 | 
						|
 | 
						|
struct mmc_host;
 | 
						|
struct mmc_card;
 | 
						|
 | 
						|
int mmc_sd_get_cid(struct mmc_host *host, u32 ocr, u32 *cid, u32 *rocr);
 | 
						|
int mmc_sd_get_csd(struct mmc_card *card);
 | 
						|
void mmc_decode_cid(struct mmc_card *card);
 | 
						|
int mmc_sd_setup_card(struct mmc_host *host, struct mmc_card *card,
 | 
						|
	bool reinit);
 | 
						|
unsigned mmc_sd_get_max_clock(struct mmc_card *card);
 | 
						|
int mmc_sd_switch_hs(struct mmc_card *card);
 | 
						|
 | 
						|
#endif
 |