Commit 7faeffec authored by Christian Gromm's avatar Christian Gromm Committed by Greg Kroah-Hartman

staging: most: core: rename struct most_c_aim_obj to pipe

This patch replaces the confusing name of struct "most_c_aim_obj" with
"pipe" to better express the function that is behind the structure.
Signed-off-by: default avatarChristian Gromm <christian.gromm@microchip.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent fcb7fad8
...@@ -31,7 +31,7 @@ static struct device core_dev; ...@@ -31,7 +31,7 @@ static struct device core_dev;
static struct ida mdev_id; static struct ida mdev_id;
static int dummy_num_buffers; static int dummy_num_buffers;
struct most_c_aim_obj { struct pipe {
struct most_aim *ptr; struct most_aim *ptr;
int refs; int refs;
int num_buffers; int num_buffers;
...@@ -56,8 +56,8 @@ struct most_channel { ...@@ -56,8 +56,8 @@ struct most_channel {
spinlock_t fifo_lock; spinlock_t fifo_lock;
struct list_head halt_fifo; struct list_head halt_fifo;
struct list_head list; struct list_head list;
struct most_c_aim_obj aim0; struct pipe aim0;
struct most_c_aim_obj aim1; struct pipe aim1;
struct list_head trash_fifo; struct list_head trash_fifo;
struct task_struct *hdm_enqueue_task; struct task_struct *hdm_enqueue_task;
wait_queue_head_t hdm_fifo_wq; wait_queue_head_t hdm_fifo_wq;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment