aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/tidspbridge/include/dspbridge/_chnl_sm.h
diff options
context:
space:
mode:
authorIonut Nicu <ionut.nicu@gmail.com>2010-11-21 05:46:24 -0500
committerOmar Ramirez Luna <omar.ramirez@ti.com>2011-02-04 21:11:35 -0500
commit3c6bf30f1e520b250242da39a493986b8b2cef53 (patch)
tree9fdeb810a478c67530e3fe4a77b7a67ba773729d /drivers/staging/tidspbridge/include/dspbridge/_chnl_sm.h
parent6d7e925b88cd8436b1284158876580ea431cb954 (diff)
staging: tidspbridge: convert core to list_head
Convert the core module of the tidspbridge driver to use struct list_head instead of struct lst_list. Signed-off-by: Ionut Nicu <ionut.nicu@mindbit.ro> Signed-off-by: Omar Ramirez Luna <omar.ramirez@ti.com>
Diffstat (limited to 'drivers/staging/tidspbridge/include/dspbridge/_chnl_sm.h')
-rw-r--r--drivers/staging/tidspbridge/include/dspbridge/_chnl_sm.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/tidspbridge/include/dspbridge/_chnl_sm.h b/drivers/staging/tidspbridge/include/dspbridge/_chnl_sm.h
index 8efd1fba2f6..8a22317e5b5 100644
--- a/drivers/staging/tidspbridge/include/dspbridge/_chnl_sm.h
+++ b/drivers/staging/tidspbridge/include/dspbridge/_chnl_sm.h
@@ -26,7 +26,7 @@
26#include <dspbridge/dspapi.h> 26#include <dspbridge/dspapi.h>
27#include <dspbridge/dspdefs.h> 27#include <dspbridge/dspdefs.h>
28 28
29#include <dspbridge/list.h> 29#include <linux/list.h>
30#include <dspbridge/ntfy.h> 30#include <dspbridge/ntfy.h>
31 31
32/* 32/*
@@ -148,13 +148,13 @@ struct chnl_object {
148 struct sync_object *sync_event; 148 struct sync_object *sync_event;
149 u32 process; /* Process which created this channel */ 149 u32 process; /* Process which created this channel */
150 u32 pcb_arg; /* Argument to use with callback */ 150 u32 pcb_arg; /* Argument to use with callback */
151 struct lst_list *pio_requests; /* List of IOR's to driver */ 151 struct list_head pio_requests; /* List of IOR's to driver */
152 s32 cio_cs; /* Number of IOC's in queue */ 152 s32 cio_cs; /* Number of IOC's in queue */
153 s32 cio_reqs; /* Number of IORequests in queue */ 153 s32 cio_reqs; /* Number of IORequests in queue */
154 s32 chnl_packets; /* Initial number of free Irps */ 154 s32 chnl_packets; /* Initial number of free Irps */
155 /* List of IOC's from driver */ 155 /* List of IOC's from driver */
156 struct lst_list *pio_completions; 156 struct list_head pio_completions;
157 struct lst_list *free_packets_list; /* List of free Irps */ 157 struct list_head free_packets_list; /* List of free Irps */
158 struct ntfy_object *ntfy_obj; 158 struct ntfy_object *ntfy_obj;
159 u32 bytes_moved; /* Total number of bytes transfered */ 159 u32 bytes_moved; /* Total number of bytes transfered */
160 160