On 9 March 2016 at 17:17, Wolfram Sang <wsa@xxxxxxxxxxxxx> wrote: > >> > + >> > + int (*start_signal_voltage_switch)(struct tmio_mmc_host *host, >> > + unsigned char signal_voltage); >> >> Do you really need to add a new tmio specific callback for this? >> >> Why can't you instead have the tmio variant driver assign the >> ->start_signal_voltage_switch() callback into the struct mmc_host_ops >> instead? > > Just to see how it looks, I tried your suggestion. However, mmc_ops is > consted all the way into the core (rightfully, I'd say), so this makes > this approach quite clumsy. I kept the above callback now, just changed > the second paramater to pass the whole ios so I can use it with > mmc_regulator_set_vqmmc(). Okay, let me elaborate a bit more on what I really meant. In tmio_mmc_of_parse(), the mmc->ops gets assigned to the &tmio_mmc_ops. Before doing that, you can conditionally assign ->start_signal_voltage_switch() callback within the &tmio_mmc_ops, right!? Why am I suggesting this? I want to avoid us evolving the code in the wrong direction, similar what has happened to SDHCI. *One* way to address this, is to minimize unnecessary variant specific callbacks. > >> > +static int tmio_mmc_card_busy(struct mmc_host *mmc) >> > +{ >> > + struct tmio_mmc_host *host = mmc_priv(mmc); >> > + u32 status; >> > + >> > + pm_runtime_get_sync(mmc_dev(mmc)); >> >> This isn't needed as the mmc core already deal with runtime PM of the >> host device via mmc_claim|release_host(). > > sdhci.c does it, too - missing cleanup? We quite recently added this into the mmc core, before it was the controller driver itself who dealt with pm_runtime_get|put(). So, yes several drivers can be cleaned up. Kind regards Uffe -- To unsubscribe from this list: send the line "unsubscribe linux-mmc" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html