|
@@ -25,6 +25,8 @@ struct mmc_pwrseq_emmc {
|
|
|
struct gpio_desc *reset_gpio;
|
|
|
};
|
|
|
|
|
|
+#define to_pwrseq_emmc(p) container_of(p, struct mmc_pwrseq_emmc, pwrseq)
|
|
|
+
|
|
|
static void __mmc_pwrseq_emmc_reset(struct mmc_pwrseq_emmc *pwrseq)
|
|
|
{
|
|
|
gpiod_set_value(pwrseq->reset_gpio, 1);
|
|
@@ -35,16 +37,14 @@ static void __mmc_pwrseq_emmc_reset(struct mmc_pwrseq_emmc *pwrseq)
|
|
|
|
|
|
static void mmc_pwrseq_emmc_reset(struct mmc_host *host)
|
|
|
{
|
|
|
- struct mmc_pwrseq_emmc *pwrseq = container_of(host->pwrseq,
|
|
|
- struct mmc_pwrseq_emmc, pwrseq);
|
|
|
+ struct mmc_pwrseq_emmc *pwrseq = to_pwrseq_emmc(host->pwrseq);
|
|
|
|
|
|
__mmc_pwrseq_emmc_reset(pwrseq);
|
|
|
}
|
|
|
|
|
|
static void mmc_pwrseq_emmc_free(struct mmc_host *host)
|
|
|
{
|
|
|
- struct mmc_pwrseq_emmc *pwrseq = container_of(host->pwrseq,
|
|
|
- struct mmc_pwrseq_emmc, pwrseq);
|
|
|
+ struct mmc_pwrseq_emmc *pwrseq = to_pwrseq_emmc(host->pwrseq);
|
|
|
|
|
|
unregister_restart_handler(&pwrseq->reset_nb);
|
|
|
gpiod_put(pwrseq->reset_gpio);
|