]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
Staging: dt3155: rename dt3155_fbuffer_s
authorGreg Kroah-Hartman <gregkh@suse.de>
Tue, 27 Apr 2010 23:53:59 +0000 (16:53 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 11 May 2010 18:35:41 +0000 (11:35 -0700)
drop the "_s" as it's not needed.

Cc: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Scott Smedley <ss@aao.gov.au>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/dt3155/dt3155.h
drivers/staging/dt3155/dt3155_isr.c
drivers/staging/dt3155/dt3155_isr.h

index b99b5271d1582bc4fce58c996b54433d063c80b6..793e2fcf44660caf6568a9b1c4300fc472413fc2 100644 (file)
@@ -78,7 +78,7 @@ struct frame_info {
  * Structure for interrupt and buffer handling.
  * This is the setup for 1 card
  */
-struct dt3155_fbuffer_s {
+struct dt3155_fbuffer {
        int    nbuffers;
 
        struct frame_info frame_info[BOARD_MAX_BUFFS];
@@ -117,7 +117,7 @@ struct dt3155_status {
        u32 mem_size;   /* This is the amount of mem available  */
        u32 irq;                /* this card's irq */
        struct dt3155_config config;            /* configuration struct */
-       struct dt3155_fbuffer_s fbuffer;        /* frame buffer state struct */
+       struct dt3155_fbuffer fbuffer;  /* frame buffer state struct */
        u32 state;              /* this card's state */
        u32 device_installed;   /* Flag if installed. 1=installed */
 };
index 1ebcec0c3091f589c2e859082c0e5ad3529bdbd9..61f74b6a70f96b1b61438a0f5f4c7868f05393e4 100644 (file)
@@ -60,7 +60,7 @@ Purpose: Buffer management routines, and other routines for the ISR
 
 
 /* Pointer into global structure for handling buffers */
-struct dt3155_fbuffer_s *dt3155_fbuffer[MAXBOARDS] = {NULL
+struct dt3155_fbuffer *dt3155_fbuffer[MAXBOARDS] = {NULL
 #if MAXBOARDS == 2
                                                      , NULL
 #endif
@@ -317,7 +317,7 @@ u32 dt3155_setup_buffers(u32 *allocatorAddr)
       /* Make sure the buffering variables are consistent */
       {
        u8 *ptr = (u8 *) dt3155_fbuffer[m];
-               for (index = 0; index < sizeof(struct dt3155_fbuffer_s); index++)
+               for (index = 0; index < sizeof(struct dt3155_fbuffer); index++)
                        *(ptr++) = 0;
       }
     }
index 7595cb16c9881f6097f53d5753b7bca447ee3f3d..7d474cf743d8d45d5c2055c2b786767cb569182b 100644 (file)
@@ -36,7 +36,7 @@ MA 02111-1307 USA
 #ifndef DT3155_ISR_H
 #define DT3155_ISR_H
 
-extern struct dt3155_fbuffer_s *dt3155_fbuffer[MAXBOARDS];
+extern struct dt3155_fbuffer *dt3155_fbuffer[MAXBOARDS];
 
 /* User functions for buffering */
 /* Initialize the buffering system.  This should */