summaryrefslogtreecommitdiffstats
path: root/drivers/staging/tidspbridge/include/dspbridge/drv.h
diff options
context:
space:
mode:
authorMenon, Nishanth2010-07-22 23:03:47 +0200
committerGreg Kroah-Hartman2010-07-22 23:41:04 +0200
commit9d7d0a526193359b5289d933768e7465d9bbd91e (patch)
treeb9c88803601f23ef68bc75f3e5c2f793b6780b5e /drivers/staging/tidspbridge/include/dspbridge/drv.h
parentstaging: tidspbridge: replace CONST with c standard const (diff)
downloadkernel-qcow2-linux-9d7d0a526193359b5289d933768e7465d9bbd91e.tar.gz
kernel-qcow2-linux-9d7d0a526193359b5289d933768e7465d9bbd91e.tar.xz
kernel-qcow2-linux-9d7d0a526193359b5289d933768e7465d9bbd91e.zip
staging: tidspbridge: remove IN modifier
IN modifier does not exist. remove it Signed-off-by: Nishanth Menon <nm@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/tidspbridge/include/dspbridge/drv.h')
-rw-r--r--drivers/staging/tidspbridge/include/dspbridge/drv.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/staging/tidspbridge/include/dspbridge/drv.h b/drivers/staging/tidspbridge/include/dspbridge/drv.h
index 5827ea17e783..e15a9ac9bede 100644
--- a/drivers/staging/tidspbridge/include/dspbridge/drv.h
+++ b/drivers/staging/tidspbridge/include/dspbridge/drv.h
@@ -393,7 +393,7 @@ extern int drv_remove_dev_object(struct drv_object *driver_obj,
* Resource structure is stored in the registry which will be
* later used by the CFG module.
*/
-extern int drv_request_resources(IN u32 dw_context,
+extern int drv_request_resources(u32 dw_context,
OUT u32 *dev_node_strg);
/*
@@ -410,7 +410,7 @@ extern int drv_request_resources(IN u32 dw_context,
* The Resources are released based on Bus type.
* Resource structure is deleted from the registry
*/
-extern int drv_release_resources(IN u32 dw_context,
+extern int drv_release_resources(u32 dw_context,
struct drv_object *hdrv_obj);
/**
@@ -438,7 +438,7 @@ void bridge_recover_schedule(void);
* - MEM initialized.
* - valid physical address for the base and size > 0
*/
-extern void mem_ext_phys_pool_init(IN u32 pool_phys_base, IN u32 pool_size);
+extern void mem_ext_phys_pool_init(u32 pool_phys_base, u32 pool_size);
/*
* ======== mem_ext_phys_pool_release ========
@@ -462,8 +462,8 @@ extern void mem_ext_phys_pool_release(void);
* the size requested. Returned physical address refers to physical
* location of memory.
*/
-extern void *mem_alloc_phys_mem(IN u32 byte_size,
- IN u32 align_mask, OUT u32 *physical_address);
+extern void *mem_alloc_phys_mem(u32 byte_size,
+ u32 align_mask, OUT u32 *physical_address);
/*
* ======== mem_free_phys_mem ========