diff options
| author | Dmitry Torokhov <dtor@insightbb.com> | 2007-07-17 04:03:58 -0700 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-17 10:23:04 -0700 | 
| commit | 3110dc7a8660ea1617afac2a55e3d18ae6ce141b (patch) | |
| tree | 616aaa6975f236c220b35271e1fbfddfe658a547 /drivers/misc/ibmasm/event.c | |
| parent | 567f3e422a9a155d7c7643148efb5bf959065d34 (diff) | |
| download | olio-linux-3.10-3110dc7a8660ea1617afac2a55e3d18ae6ce141b.tar.xz olio-linux-3.10-3110dc7a8660ea1617afac2a55e3d18ae6ce141b.zip  | |
IBMASM: whitespace cleanup
IBMASM: whitespace cleanup
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Cc: Vernon Mauery <vernux@us.ibm.com>
Cc: Max Asbock <masbock@us.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/misc/ibmasm/event.c')
| -rw-r--r-- | drivers/misc/ibmasm/event.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/misc/ibmasm/event.c b/drivers/misc/ibmasm/event.c index fe1e819235a..fda6a4d3bf2 100644 --- a/drivers/misc/ibmasm/event.c +++ b/drivers/misc/ibmasm/event.c @@ -18,7 +18,7 @@   *   * Copyright (C) IBM Corporation, 2004   * - * Author: Max Asböck <amax@us.ibm.com>  + * Author: Max Asböck <amax@us.ibm.com>   *   */ @@ -51,7 +51,7 @@ static void wake_up_event_readers(struct service_processor *sp)   * event readers.   * There is no reader marker in the buffer, therefore readers are   * responsible for keeping up with the writer, or they will loose events. - */  + */  void ibmasm_receive_event(struct service_processor *sp, void *data, unsigned int data_size)  {  	struct event_buffer *buffer = sp->event_buffer; @@ -77,13 +77,13 @@ void ibmasm_receive_event(struct service_processor *sp, void *data, unsigned int  static inline int event_available(struct event_buffer *b, struct event_reader *r)  { -	return 	(r->next_serial_number < b->next_serial_number); +	return (r->next_serial_number < b->next_serial_number);  }  /**   * get_next_event   * Called by event readers (initiated from user space through the file - * system).  + * system).   * Sleeps until a new event is available.   */  int ibmasm_get_next_event(struct service_processor *sp, struct event_reader *reader)  |