mirror of
https://github.com/ukui/kernel.git
synced 2026-03-09 10:07:04 -07:00
Staging: sep: indent pass
Ok time to indent and get the code in vague shape. No other changes in this patch. Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
46eb5a13b7
commit
d19cf32fdd
@@ -66,15 +66,15 @@ struct sep_device {
|
||||
/* counter for the messages from sep */
|
||||
unsigned long sep_to_host_reply_counter;
|
||||
/* counter for the number of bytes allocated in the pool for the current
|
||||
transaction */
|
||||
transaction */
|
||||
unsigned long data_pool_bytes_allocated;
|
||||
|
||||
/* array of pointers to the pages that represent input data for the synchronic
|
||||
DMA action */
|
||||
DMA action */
|
||||
struct page **in_page_array;
|
||||
|
||||
/* array of pointers to the pages that represent out data for the synchronic
|
||||
DMA action */
|
||||
DMA action */
|
||||
struct page **out_page_array;
|
||||
|
||||
/* number of pages in the sep_in_page_array */
|
||||
@@ -121,9 +121,8 @@ static inline void sep_wait_sram_write(struct sep_device *dev)
|
||||
u32 reg_val;
|
||||
do
|
||||
reg_val = sep_read_reg(dev, HW_SRAM_DATA_READY_REG_ADDR);
|
||||
while(!(reg_val & 1));
|
||||
while (!(reg_val & 1));
|
||||
}
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -51,12 +51,7 @@ This functions copies the cache and resident from their source location into
|
||||
destination memory, which is external to Linux VM and is given as physical
|
||||
address
|
||||
*/
|
||||
int sep_copy_cache_resident_to_area(unsigned long src_cache_addr,
|
||||
unsigned long cache_size_in_bytes,
|
||||
unsigned long src_resident_addr,
|
||||
unsigned long resident_size_in_bytes,
|
||||
unsigned long *dst_new_cache_addr_ptr,
|
||||
unsigned long *dst_new_resident_addr_ptr);
|
||||
int sep_copy_cache_resident_to_area(unsigned long src_cache_addr, unsigned long cache_size_in_bytes, unsigned long src_resident_addr, unsigned long resident_size_in_bytes, unsigned long *dst_new_cache_addr_ptr, unsigned long *dst_new_resident_addr_ptr);
|
||||
|
||||
/*
|
||||
This functions maps and allocates the shared area on the external
|
||||
@@ -65,9 +60,7 @@ to allocate. The outputs are kernel_shared_area_addr_ptr - the kerenl
|
||||
address of the mapped and allocated shared area, and
|
||||
phys_shared_area_addr_ptr - the physical address of the shared area
|
||||
*/
|
||||
int sep_map_and_alloc_shared_area(unsigned long shared_area_size,
|
||||
unsigned long *kernel_shared_area_addr_ptr,
|
||||
unsigned long *phys_shared_area_addr_ptr);
|
||||
int sep_map_and_alloc_shared_area(unsigned long shared_area_size, unsigned long *kernel_shared_area_addr_ptr, unsigned long *phys_shared_area_addr_ptr);
|
||||
|
||||
/*
|
||||
This functions unmaps and deallocates the shared area on the external
|
||||
@@ -76,9 +69,7 @@ deallocate,kernel_shared_area_addr_ptr - the kernel address of the
|
||||
mapped and allocated shared area,phys_shared_area_addr_ptr - the physical
|
||||
address of the shared area
|
||||
*/
|
||||
void sep_unmap_and_free_shared_area(unsigned long shared_area_size,
|
||||
unsigned long kernel_shared_area_addr,
|
||||
unsigned long phys_shared_area_addr);
|
||||
void sep_unmap_and_free_shared_area(unsigned long shared_area_size, unsigned long kernel_shared_area_addr, unsigned long phys_shared_area_addr);
|
||||
|
||||
|
||||
/*
|
||||
|
||||
@@ -229,4 +229,4 @@
|
||||
#define HW_CLR_SRAM_BUSY_REG_REG_ADDR 0x0F0CUL
|
||||
#define HW_CC_SRAM_BASE_ADDRESS 0x5800UL
|
||||
|
||||
#endif /* ifndef HW_DEFS */
|
||||
#endif /* ifndef HW_DEFS */
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user