diff options
author | Geliang Tang <geliangtang@163.com> | 2016-01-01 22:59:10 +0800 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2016-02-29 11:02:46 +0100 |
commit | 238fc95e836917d290931b9700ab2f711b879629 (patch) | |
tree | b95ff40e262bbfb475591e38af18115188c06feb /drivers/mmc/host/usdhi6rol0.c | |
parent | 1046a811511d2cb5a59ead53f528d693a5c7fdd2 (diff) | |
download | lwn-238fc95e836917d290931b9700ab2f711b879629.tar.gz lwn-238fc95e836917d290931b9700ab2f711b879629.zip |
mmc: usdhi6rol0: use to_delayed_work
Use to_delayed_work() instead of open-coding it.
Signed-off-by: Geliang Tang <geliangtang@163.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc/host/usdhi6rol0.c')
-rw-r--r-- | drivers/mmc/host/usdhi6rol0.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/usdhi6rol0.c b/drivers/mmc/host/usdhi6rol0.c index b47122d3e8d8..b2752fe711f2 100644 --- a/drivers/mmc/host/usdhi6rol0.c +++ b/drivers/mmc/host/usdhi6rol0.c @@ -1630,7 +1630,7 @@ static irqreturn_t usdhi6_cd(int irq, void *dev_id) */ static void usdhi6_timeout_work(struct work_struct *work) { - struct delayed_work *d = container_of(work, struct delayed_work, work); + struct delayed_work *d = to_delayed_work(work); struct usdhi6_host *host = container_of(d, struct usdhi6_host, timeout_work); struct mmc_request *mrq = host->mrq; struct mmc_data *data = mrq ? mrq->data : NULL; |