error CLK_IS_BASIC undeclared

drivers/clk/ingenic/clk-bus.c:153:23: error: 'CLK_IS_BASIC' undeclared (first use in this function); did you mean 'CP0_IBASE'?
  init.flags = flags | CLK_IS_BASIC;
                       ^~~~~~~~~~~~
                       CP0_IBASE
commit 90b6c5c73c6904ac200161fc38974d867f0535b0
Author: Stephen Boyd <sboyd@kernel.org>
Date:   Thu Apr 25 10:57:37 2019 -0700

    clk: Remove CLK_IS_BASIC clk flag
    
    This flag was historically used to indicate that a clk is a "basic" type
    of clk like a mux, divider, gate, etc. This never turned out to be very
    useful though because it was hard to cleanly split "basic" clks from
    other clks in a system. This one flag was a way for type introspection
    and it just didn't scale. If anything, it was used by the TI clk driver
    to indicate that a clk_hw wasn't contained in the SoC specific clk
    structure. We can get rid of this define now that TI is finding those
    clks a different way.
0%