@ -842,7 +842,7 @@ static ulong rk3288_clk_set_rate(struct clk *clk, ulong rate)
return new_rate ;
}
static int rk3288_gmac_set_parent ( struct clk * clk , struct clk * parent )
static int __maybe_unused rk3288_gmac_set_parent ( struct clk * clk , struct clk * parent )
{
struct rk3288_clk_priv * priv = dev_get_priv ( clk - > dev ) ;
struct rk3288_cru * cru = priv - > cru ;
@ -880,7 +880,7 @@ static int rk3288_gmac_set_parent(struct clk *clk, struct clk *parent)
return - EINVAL ;
}
static int rk3288_clk_set_parent ( struct clk * clk , struct clk * parent )
static int __maybe_unused rk3288_clk_set_parent ( struct clk * clk , struct clk * parent )
{
switch ( clk - > id ) {
case SCLK_MAC :
@ -896,7 +896,9 @@ static int rk3288_clk_set_parent(struct clk *clk, struct clk *parent)
static struct clk_ops rk3288_clk_ops = {
. get_rate = rk3288_clk_get_rate ,
. set_rate = rk3288_clk_set_rate ,
# if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
. set_parent = rk3288_clk_set_parent ,
# endif
} ;
static int rk3288_clk_ofdata_to_platdata ( struct udevice * dev )