diff options
author | Pierre Ossman <drzeus@drzeus.cx> | 2007-09-19 12:42:16 -0400 |
---|---|---|
committer | Pierre Ossman <drzeus@drzeus.cx> | 2007-09-23 15:28:01 -0400 |
commit | 759bdc7af450404382e937c76722ae8736daef92 (patch) | |
tree | 6c605ba19762d0d0a0afd42f2b4f5d1da99ad90a /drivers/mmc/core/bus.c | |
parent | f9996aee36921e8f1d499de1b2ea380855cf6d97 (diff) |
sdio: store vendor strings
Store vendor strings found in CISTPL_VERS_1 so that function drivers
can access them.
Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
Diffstat (limited to 'drivers/mmc/core/bus.c')
-rw-r--r-- | drivers/mmc/core/bus.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/mmc/core/bus.c b/drivers/mmc/core/bus.c index 1cc11714916f..733ac95331c7 100644 --- a/drivers/mmc/core/bus.c +++ b/drivers/mmc/core/bus.c | |||
@@ -187,6 +187,9 @@ static void mmc_release_card(struct device *dev) | |||
187 | 187 | ||
188 | sdio_free_common_cis(card); | 188 | sdio_free_common_cis(card); |
189 | 189 | ||
190 | if (card->info) | ||
191 | kfree(card->info); | ||
192 | |||
190 | kfree(card); | 193 | kfree(card); |
191 | } | 194 | } |
192 | 195 | ||