clk: Rename clk_get_optional_nodev

This normalizes the name of this accessor function to put "_optional" last.

Signed-off-by: Sean Anderson <seanga2@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Link: https://lore.kernel.org/r/20211222171114.3091780-2-seanga2@gmail.com
This commit is contained in:
Sean Anderson 2021-12-22 12:11:10 -05:00
parent 6c9239351a
commit 011bbfbb30
3 changed files with 10 additions and 8 deletions

View File

@ -432,7 +432,8 @@ int clk_get_by_name_nodev(ofnode node, const char *name, struct clk *clk)
return clk_get_by_index_nodev(node, index, clk); return clk_get_by_index_nodev(node, index, clk);
} }
int clk_get_optional_nodev(ofnode node, const char *name, struct clk *clk) int clk_get_by_name_nodev_optional(ofnode node, const char *name,
struct clk *clk)
{ {
int ret; int ret;

View File

@ -723,13 +723,13 @@ static int mtk_tphy_probe(struct udevice *dev)
tphy->phys[index] = instance; tphy->phys[index] = instance;
index++; index++;
err = clk_get_optional_nodev(subnode, "ref", err = clk_get_by_name_nodev_optional(subnode, "ref",
&instance->ref_clk); &instance->ref_clk);
if (err) if (err)
return err; return err;
err = clk_get_optional_nodev(subnode, "da_ref", err = clk_get_by_name_nodev_optional(subnode, "da_ref",
&instance->da_ref_clk); &instance->da_ref_clk);
if (err) if (err)
return err; return err;
} }

View File

@ -194,7 +194,7 @@ int clk_get_by_name(struct udevice *dev, const char *name, struct clk *clk);
int clk_get_by_name_nodev(ofnode node, const char *name, struct clk *clk); int clk_get_by_name_nodev(ofnode node, const char *name, struct clk *clk);
/** /**
* clk_get_optional_nodev - Get/request an optinonal clock by name * clk_get_by_name_nodev_optional - Get/request an optinonal clock by name
* without a device. * without a device.
* @node: The client ofnode. * @node: The client ofnode.
* @name: The name of the clock to request. * @name: The name of the clock to request.
@ -206,7 +206,8 @@ int clk_get_by_name_nodev(ofnode node, const char *name, struct clk *clk);
* no clock producer, in this case, skip the error number -ENODATA, and * no clock producer, in this case, skip the error number -ENODATA, and
* the function returns 0. * the function returns 0.
*/ */
int clk_get_optional_nodev(ofnode node, const char *name, struct clk *clk); int clk_get_by_name_nodev_optional(ofnode node, const char *name,
struct clk *clk);
/** /**
* devm_clk_get - lookup and obtain a managed reference to a clock producer. * devm_clk_get - lookup and obtain a managed reference to a clock producer.
@ -291,7 +292,7 @@ clk_get_by_name_nodev(ofnode node, const char *name, struct clk *clk)
} }
static inline int static inline int
clk_get_optional_nodev(ofnode node, const char *name, struct clk *clk) clk_get_by_name_nodev_optional(ofnode node, const char *name, struct clk *clk)
{ {
return -ENOSYS; return -ENOSYS;
} }