提交 78606497 编写于 作者: P Pavel Machek 提交者: Tom Rini

socfpga: cleanup socfpga_dw_mmc

Cleanups as suggested by wd on mailing list.
Signed-off-by: NPavel Machek <pavel@denx.de>
Acked-by: NChin Liang See <clsee@altera.com>
上级 99b97106
......@@ -16,8 +16,6 @@ static const struct socfpga_clock_manager *clock_manager_base =
static const struct socfpga_system_manager *system_manager_base =
(void *)SOCFPGA_SYSMGR_ADDRESS;
static char *SOCFPGA_NAME = "SOCFPGA DWMMC";
static void socfpga_dwmci_clksel(struct dwmci_host *host)
{
unsigned int drvsel;
......@@ -45,14 +43,16 @@ static void socfpga_dwmci_clksel(struct dwmci_host *host)
int socfpga_dwmmc_init(u32 regbase, int bus_width, int index)
{
struct dwmci_host *host = NULL;
struct dwmci_host *host;
/* calloc for zero init */
host = calloc(sizeof(struct dwmci_host), 1);
if (!host) {
printf("dwmci_host calloc fail!\n");
return -1;
}
host->name = SOCFPGA_NAME;
host->name = "SOCFPGA DWMMC";
host->ioaddr = (void *)regbase;
host->buswidth = bus_width;
host->clksel = socfpga_dwmci_clksel;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册