提交 ec0c2f62 编写于 作者: C Christian Gromm 提交者: Greg Kroah-Hartman

staging: most: core: rename function

The core module used to have two functions to find a certain
channel. One by name and one by interface. Since no channel is
searched by its interface name anymore the by_name suffix is
rendered redundant. This patch renames the function accordingly.
Signed-off-by: NChristian Gromm <christian.gromm@microchip.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 3d6eb1d2
...@@ -628,13 +628,13 @@ static int split_string(char *buf, char **a, char **b, char **c, char **d) ...@@ -628,13 +628,13 @@ static int split_string(char *buf, char **a, char **b, char **c, char **d)
} }
/** /**
* get_channel_by_name - get pointer to channel object * get_channel - get pointer to channel object
* @mdev: name of the device instance * @mdev: name of the device instance
* @mdev_ch: name of the respective channel * @mdev_ch: name of the respective channel
* *
* This retrieves the pointer to a channel object. * This retrieves the pointer to a channel object.
*/ */
static struct most_channel *get_channel_by_name(char *mdev, char *mdev_ch) static struct most_channel *get_channel(char *mdev, char *mdev_ch)
{ {
struct most_channel *c, *tmp; struct most_channel *c, *tmp;
struct most_inst_obj *i, *i_tmp; struct most_inst_obj *i, *i_tmp;
...@@ -734,7 +734,7 @@ static ssize_t add_link_store(struct device_driver *drv, ...@@ -734,7 +734,7 @@ static ssize_t add_link_store(struct device_driver *drv,
aim_param = devnod_buf; aim_param = devnod_buf;
} }
c = get_channel_by_name(mdev, mdev_ch); c = get_channel(mdev, mdev_ch);
if (IS_ERR(c)) if (IS_ERR(c))
return -ENODEV; return -ENODEV;
...@@ -773,7 +773,7 @@ static ssize_t remove_link_store(struct device_driver *drv, ...@@ -773,7 +773,7 @@ static ssize_t remove_link_store(struct device_driver *drv,
if (ret) if (ret)
return ret; return ret;
aim = match_module(aim_name); aim = match_module(aim_name);
c = get_channel_by_name(mdev, mdev_ch); c = get_channel(mdev, mdev_ch);
if (IS_ERR(c)) if (IS_ERR(c))
return -ENODEV; return -ENODEV;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册