|
@@ -49,7 +49,6 @@ static unsigned int debug_quirks2;
|
|
|
|
|
|
static void sdhci_finish_data(struct sdhci_host *);
|
|
|
|
|
|
-static void sdhci_send_command(struct sdhci_host *, struct mmc_command *);
|
|
|
static void sdhci_finish_command(struct sdhci_host *);
|
|
|
static int sdhci_execute_tuning(struct mmc_host *mmc, u32 opcode);
|
|
|
static void sdhci_tuning_timer(unsigned long data);
|
|
@@ -981,7 +980,7 @@ static void sdhci_finish_data(struct sdhci_host *host)
|
|
|
tasklet_schedule(&host->finish_tasklet);
|
|
|
}
|
|
|
|
|
|
-static void sdhci_send_command(struct sdhci_host *host, struct mmc_command *cmd)
|
|
|
+void sdhci_send_command(struct sdhci_host *host, struct mmc_command *cmd)
|
|
|
{
|
|
|
int flags;
|
|
|
u32 mask;
|
|
@@ -1053,6 +1052,7 @@ static void sdhci_send_command(struct sdhci_host *host, struct mmc_command *cmd)
|
|
|
|
|
|
sdhci_writew(host, SDHCI_MAKE_CMD(cmd->opcode, flags), SDHCI_COMMAND);
|
|
|
}
|
|
|
+EXPORT_SYMBOL_GPL(sdhci_send_command);
|
|
|
|
|
|
static void sdhci_finish_command(struct sdhci_host *host)
|
|
|
{
|