Skip to content

Commit

Permalink
Staging: sep: indent pass
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Alan Cox authored and Greg Kroah-Hartman committed Sep 15, 2009
1 parent 46eb5a1 commit d19cf32
Show file tree
Hide file tree
Showing 6 changed files with 2,048 additions and 2,673 deletions.
9 changes: 4 additions & 5 deletions drivers/staging/sep/sep_dev.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down Expand Up @@ -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

Loading

0 comments on commit d19cf32

Please sign in to comment.