Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

mfd: intel_quark_i2c_gpio: Remove CLK_IS_ROOT

This flag is a no-op now (see commit 47b0eeb3dc8a "clk: Deprecate
CLK_IS_ROOT", 2016-02-02) so remove it.

Acked-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: Lee Jones <lee.jones@linaro.org>

authored by

Stephen Boyd and committed by
Lee Jones
36a0c088 0f7e70e7

+1 -1
+1 -1
drivers/mfd/intel_quark_i2c_gpio.c
··· 130 130 131 131 i2c_clk = clk_register_fixed_rate(dev, 132 132 INTEL_QUARK_I2C_CONTROLLER_CLK, NULL, 133 - CLK_IS_ROOT, INTEL_QUARK_I2C_CLK_HZ); 133 + 0, INTEL_QUARK_I2C_CLK_HZ); 134 134 if (IS_ERR(i2c_clk)) 135 135 return PTR_ERR(i2c_clk); 136 136