aboutsummaryrefslogtreecommitdiff
path: root/drivers/staging/sep/sep_dev.h
diff options
context:
space:
mode:
authorAlan Cox <alan@linux.intel.com>2009-08-06 20:45:57 +0100
committerGreg Kroah-Hartman <gregkh@suse.de>2009-09-15 12:02:12 -0700
commitd19cf32fddeb05a13799fd766fced4204cc9164d (patch)
treea1329e5ccb7441f72bbfd49194c0b2f2059aa486 /drivers/staging/sep/sep_dev.h
parent46eb5a13b7f397b37bac14fbfa240cffa463783c (diff)
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>
Diffstat (limited to 'drivers/staging/sep/sep_dev.h')
-rw-r--r--drivers/staging/sep/sep_dev.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/drivers/staging/sep/sep_dev.h b/drivers/staging/sep/sep_dev.h
index 1baff899388..0e8a09926f4 100644
--- a/drivers/staging/sep/sep_dev.h
+++ b/drivers/staging/sep/sep_dev.h
@@ -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
-