On Tue, Jun 12, 2012 at 11:57:07AM +0100, viresh kumar wrote: > struct clk *clk_get(struct device *dev, const char *id) > { > return dev && strcmp(dev_name(dev), "fb") == 0 ? NULL : ERR_PTR(-ENOENT); > } > > I can remove first four without any issues, but just can't remove the > last one. The dummy clk_get() always returns NULL, whereas this one > returns NULL only for fb device. This isn't a totally dummy clk implementation. What it's doing is returning a dummy clock for the framebuffer, and explicitly failing everything else (because we have no need to support any other clocks.) If we want to use the dummy clk stuff in its entirety, and just return the dummy clock for all clk_get()s on this platform, then there isn't a problem. If we want to keep this behaviour, we need to use clkdev with the dummy clk implementation. -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html