On Sat, Apr 16, 2016 at 08:58:49PM -0400, Javier Martinez Canillas wrote: > But regardless of the ABBA deadlock, there are reasons why the clk API is > split into an {,un}prepare and {en,dis}able functions (e.g: non-atomic vs > atomic) and it is a common pattern for drivers to prepare the clock(s) on > setup (i.e: probe), unprepare on driver removal, and just {en,dis}able the > clock(s) during runtime. The reason to split prepare+enable is to differentiate the sleeping and non-sleeping paths. Not to encourage doing one type in probe() and rest in other places. The clock consumer does not care whether prepare or enable is a noop. It shouldn't care, because the clock provider might change and consumer remains the same. On the other hand the consumer is interested whether it can block or not. The argument that common pattern is to prepare in probe does not convince me. If a clock enable is an noop and everything is done in prepare/unprepare, then following such "common pattern" would be equal to keeping the clock on always, even if it could be unprepared (gated). > So I believe this patch is good on its own As I said above, no. The pattern might be misleading. The prepare path is there for sleeping purposes. Not for probes. Choosing such pattern effectively makes clock handling worthless in certain clock providers (these which enable is a noop). > and at least makes the driver more > consistent with most I2C controller drivers that do the same w.r.t clocks. I cannot respond to that argument because I do not know most I2C controllers. Best regards, Krzysztof -- To unsubscribe from this list: send the line "unsubscribe linux-i2c" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html