This patch removes typedef from struct sdio_cmd53_t and renames it to
sdio_cmd53.
Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
 }
 
 
-static int wilc_sdio_cmd53(struct wilc *wilc, sdio_cmd53_t *cmd)
+static int wilc_sdio_cmd53(struct wilc *wilc, struct sdio_cmd53 *cmd)
 {
        struct sdio_func *func = container_of(wilc->dev, struct sdio_func, dev);
        int size, ret;
                        goto _fail_;
                }
        } else {
-               sdio_cmd53_t cmd;
+               struct sdio_cmd53 cmd;
 
                /**
                 *      set the AHB address
 {
        struct sdio_func *func = dev_to_sdio_func(wilc->dev);
        u32 block_size = g_sdio.block_size;
-       sdio_cmd53_t cmd;
+       struct sdio_cmd53 cmd;
        int nblk, nleft, ret;
 
        cmd.read_write = 1;
                }
                *data = cmd.data;
        } else {
-               sdio_cmd53_t cmd;
+               struct sdio_cmd53 cmd;
 
                if (!sdio_set_func0_csa_address(wilc, addr))
                        goto _fail_;
 {
        struct sdio_func *func = dev_to_sdio_func(wilc->dev);
        u32 block_size = g_sdio.block_size;
-       sdio_cmd53_t cmd;
+       struct sdio_cmd53 cmd;
        int nblk, nleft, ret;
 
        cmd.read_write = 0;
 
        u32 data:               8;
 };
 
-typedef struct {
+struct sdio_cmd53 {
        u32 read_write:         1;
        u32 function:           3;
        u32 block_mode:         1;
        u32 count:              9;
        u8 *buffer;
        u32 block_size;
-} sdio_cmd53_t;
+};
 
 #define WILC_MAC_INDICATE_STATUS       0x1
 #define WILC_MAC_STATUS_INIT           -1