This patch removes the function get_channel_by_iface that walks a list of
all registered interfaces and returns a pointer to a channel when matched.
Instead the private field of the interface structure is used to directly
access the channel via the id. The patch is needed to remove unnecessary
list traversing.

Signed-off-by: Christian Gromm <christian.gr...@microchip.com>
---
 drivers/staging/most/core.c | 47 +++++++++++++--------------------------------
 1 file changed, 13 insertions(+), 34 deletions(-)

diff --git a/drivers/staging/most/core.c b/drivers/staging/most/core.c
index 8c9b10d..d8e3b88 100644
--- a/drivers/staging/most/core.c
+++ b/drivers/staging/most/core.c
@@ -995,37 +995,10 @@ static void most_write_completion(struct mbo *mbo)
                arm_mbo(mbo);
 }
 
-/**
- * get_channel_by_iface - get pointer to channel object
- * @iface: pointer to interface instance
- * @id: channel ID
- *
- * This retrieves a pointer to a channel of the given interface and channel ID.
- */
-static struct
-most_c_obj *get_channel_by_iface(struct most_interface *iface, int id)
-{
-       struct most_inst_obj *i;
-
-       if (unlikely(!iface)) {
-               pr_err("Bad interface\n");
-               return NULL;
-       }
-       if (unlikely((id < 0) || (id >= iface->num_channels))) {
-               pr_err("Channel index (%d) out of range\n", id);
-               return NULL;
-       }
-       i = iface->priv;
-       if (unlikely(!i)) {
-               pr_err("interface is not registered\n");
-               return NULL;
-       }
-       return i->channel[id];
-}
-
 int channel_has_mbo(struct most_interface *iface, int id, struct most_aim *aim)
 {
-       struct most_c_obj *c = get_channel_by_iface(iface, id);
+       struct most_inst_obj *inst = iface->priv;
+       struct most_c_obj *c = inst->channel[id];
        unsigned long flags;
        int empty;
 
@@ -1057,10 +1030,11 @@ struct mbo *most_get_mbo(struct most_interface *iface, 
int id,
 {
        struct mbo *mbo;
        struct most_c_obj *c;
+       struct most_inst_obj *inst = iface->priv;
        unsigned long flags;
        int *num_buffers_ptr;
 
-       c = get_channel_by_iface(iface, id);
+       c = inst->channel[id];
        if (unlikely(!c))
                return NULL;
 
@@ -1162,7 +1136,8 @@ int most_start_channel(struct most_interface *iface, int 
id,
 {
        int num_buffer;
        int ret;
-       struct most_c_obj *c = get_channel_by_iface(iface, id);
+       struct most_inst_obj *inst = iface->priv;
+       struct most_c_obj *c = inst->channel[id];
 
        if (unlikely(!c))
                return -EINVAL;
@@ -1230,13 +1205,15 @@ EXPORT_SYMBOL_GPL(most_start_channel);
 int most_stop_channel(struct most_interface *iface, int id,
                      struct most_aim *aim)
 {
+       struct most_inst_obj *inst;
        struct most_c_obj *c;
 
        if (unlikely((!iface) || (id >= iface->num_channels) || (id < 0))) {
                pr_err("Bad interface or index out of range\n");
                return -EINVAL;
        }
-       c = get_channel_by_iface(iface, id);
+       inst = iface->priv;
+       c = inst->channel[id];
        if (unlikely(!c))
                return -EINVAL;
 
@@ -1513,7 +1490,8 @@ EXPORT_SYMBOL_GPL(most_deregister_interface);
  */
 void most_stop_enqueue(struct most_interface *iface, int id)
 {
-       struct most_c_obj *c = get_channel_by_iface(iface, id);
+       struct most_inst_obj *inst = iface->priv;
+       struct most_c_obj *c = inst->channel[id];
 
        if (!c)
                return;
@@ -1534,7 +1512,8 @@ EXPORT_SYMBOL_GPL(most_stop_enqueue);
  */
 void most_resume_enqueue(struct most_interface *iface, int id)
 {
-       struct most_c_obj *c = get_channel_by_iface(iface, id);
+       struct most_inst_obj *inst = iface->priv;
+       struct most_c_obj *c = inst->channel[id];
 
        if (!c)
                return;
-- 
2.7.4

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to