diff options
author | Pantelis Antoniou | 2014-03-10 20:05:51 +0200 |
---|---|---|
committer | Pantelis Antoniou | 2014-03-24 11:32:10 +0200 |
commit | 22cb7d334e296288e53057467dfee26858275516 (patch) | |
tree | c8a1348c5f490f8cc5c88e601fd89f336ae85475 /drivers/mmc/dw_mmc.c | |
parent | ab769f227f79bedae7840f99b6c0c4d66aafc78e (diff) |
mmc: Convert mmc struct's name array to a pointer
Using an array is pointless; even more pointless (and scary) is using
sprintf to fill it without a format string.
Signed-off-by: Pantelis Antoniou <panto@antoniou-consulting.com>
Diffstat (limited to 'drivers/mmc/dw_mmc.c')
-rw-r--r-- | drivers/mmc/dw_mmc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/dw_mmc.c b/drivers/mmc/dw_mmc.c index 2e6576e8dd3..011efb14a98 100644 --- a/drivers/mmc/dw_mmc.c +++ b/drivers/mmc/dw_mmc.c @@ -363,7 +363,7 @@ int add_dwmci(struct dwmci_host *host, u32 max_clk, u32 min_clk) mmc->priv = host; host->mmc = mmc; - sprintf(mmc->name, "%s", host->name); + mmc->name = host->name; mmc->ops = &dwmci_ops; mmc->f_min = min_clk; mmc->f_max = max_clk; |