diff options
author | Guennadi Liakhovetski <g.liakhovetski@gmx.de> | 2012-05-01 09:40:15 -0400 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2012-07-21 00:02:16 -0400 |
commit | 27410ee7e391ce650d6d0242805f080599be7ad7 (patch) | |
tree | ca1a99eb74e56504be7d2bf34fecf11271f361b5 /drivers/mmc/core | |
parent | 7d17baa05da6a2e64ee15011cdf4319bd3e0ff61 (diff) |
mmc: core: use a more generic name for slot function types and fields
struct mmc_host::hotplug is becoming a generic hook for slot functions.
Rename it accordingly.
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'drivers/mmc/core')
-rw-r--r-- | drivers/mmc/core/host.c | 2 | ||||
-rw-r--r-- | drivers/mmc/core/slot-gpio.c | 8 |
2 files changed, 6 insertions, 4 deletions
diff --git a/drivers/mmc/core/host.c b/drivers/mmc/core/host.c index 91c84c7a1829..b8c5290571f1 100644 --- a/drivers/mmc/core/host.c +++ b/drivers/mmc/core/host.c | |||
@@ -327,6 +327,8 @@ struct mmc_host *mmc_alloc_host(int extra, struct device *dev) | |||
327 | 327 | ||
328 | mmc_host_clk_init(host); | 328 | mmc_host_clk_init(host); |
329 | 329 | ||
330 | host->slot.cd_irq = -EINVAL; | ||
331 | |||
330 | spin_lock_init(&host->lock); | 332 | spin_lock_init(&host->lock); |
331 | init_waitqueue_head(&host->wq); | 333 | init_waitqueue_head(&host->wq); |
332 | INIT_DELAYED_WORK(&host->detect, mmc_rescan); | 334 | INIT_DELAYED_WORK(&host->detect, mmc_rescan); |
diff --git a/drivers/mmc/core/slot-gpio.c b/drivers/mmc/core/slot-gpio.c index 979671053436..468e5a0e5126 100644 --- a/drivers/mmc/core/slot-gpio.c +++ b/drivers/mmc/core/slot-gpio.c | |||
@@ -56,8 +56,8 @@ int mmc_gpio_request_cd(struct mmc_host *host, unsigned int gpio) | |||
56 | goto eirqreq; | 56 | goto eirqreq; |
57 | 57 | ||
58 | ctx->cd_gpio = gpio; | 58 | ctx->cd_gpio = gpio; |
59 | host->hotplug.irq = irq; | 59 | host->slot.cd_irq = irq; |
60 | host->hotplug.handler_priv = ctx; | 60 | host->slot.handler_priv = ctx; |
61 | 61 | ||
62 | return 0; | 62 | return 0; |
63 | 63 | ||
@@ -71,12 +71,12 @@ EXPORT_SYMBOL(mmc_gpio_request_cd); | |||
71 | 71 | ||
72 | void mmc_gpio_free_cd(struct mmc_host *host) | 72 | void mmc_gpio_free_cd(struct mmc_host *host) |
73 | { | 73 | { |
74 | struct mmc_gpio *ctx = host->hotplug.handler_priv; | 74 | struct mmc_gpio *ctx = host->slot.handler_priv; |
75 | 75 | ||
76 | if (!ctx) | 76 | if (!ctx) |
77 | return; | 77 | return; |
78 | 78 | ||
79 | free_irq(host->hotplug.irq, host); | 79 | free_irq(host->slot.cd_irq, host); |
80 | gpio_free(ctx->cd_gpio); | 80 | gpio_free(ctx->cd_gpio); |
81 | kfree(ctx); | 81 | kfree(ctx); |
82 | } | 82 | } |