]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
staging: wilc1000: remove typedef from struct sdio_cmd52_t
authorChaehyun Lim <chaehyun.lim@gmail.com>
Thu, 3 Mar 2016 05:28:20 +0000 (14:28 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 4 Mar 2016 01:52:13 +0000 (17:52 -0800)
This patch removes typedef from struct sdio_cmd52_t and renames it to
sdio_cmd52.

Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/wilc_sdio.c
drivers/staging/wilc1000/wilc_wlan_if.h

index 029bd098da80b1be50bc1189665a168a798b5228..37fa1ed98dd7c382593484762cead81887c7a782 100644 (file)
@@ -51,7 +51,7 @@ static void wilc_sdio_interrupt(struct sdio_func *func)
        sdio_claim_host(func);
 }
 
-static int wilc_sdio_cmd52(struct wilc *wilc, sdio_cmd52_t *cmd)
+static int wilc_sdio_cmd52(struct wilc *wilc, struct sdio_cmd52 *cmd)
 {
        struct sdio_func *func = container_of(wilc->dev, struct sdio_func, dev);
        int ret;
@@ -145,7 +145,7 @@ static void linux_sdio_remove(struct sdio_func *func)
 
 static int sdio_reset(struct wilc *wilc)
 {
-       sdio_cmd52_t cmd;
+       struct sdio_cmd52 cmd;
        int ret;
        struct sdio_func *func = dev_to_sdio_func(wilc->dev);
 
@@ -266,7 +266,7 @@ static void wilc_sdio_disable_interrupt(struct wilc *dev)
 static int sdio_set_func0_csa_address(struct wilc *wilc, u32 adr)
 {
        struct sdio_func *func = dev_to_sdio_func(wilc->dev);
-       sdio_cmd52_t cmd;
+       struct sdio_cmd52 cmd;
        int ret;
 
        /**
@@ -307,7 +307,7 @@ _fail_:
 static int sdio_set_func0_block_size(struct wilc *wilc, u32 block_size)
 {
        struct sdio_func *func = dev_to_sdio_func(wilc->dev);
-       sdio_cmd52_t cmd;
+       struct sdio_cmd52 cmd;
        int ret;
 
        cmd.read_write = 1;
@@ -343,7 +343,7 @@ _fail_:
 static int sdio_set_func1_block_size(struct wilc *wilc, u32 block_size)
 {
        struct sdio_func *func = dev_to_sdio_func(wilc->dev);
-       sdio_cmd52_t cmd;
+       struct sdio_cmd52 cmd;
        int ret;
 
        cmd.read_write = 1;
@@ -382,7 +382,7 @@ static int sdio_write_reg(struct wilc *wilc, u32 addr, u32 data)
        data = cpu_to_le32(data);
 
        if ((addr >= 0xf0) && (addr <= 0xff)) {
-               sdio_cmd52_t cmd;
+               struct sdio_cmd52 cmd;
 
                cmd.read_write = 1;
                cmd.function = 0;
@@ -522,7 +522,7 @@ static int sdio_read_reg(struct wilc *wilc, u32 addr, u32 *data)
        int ret;
 
        if ((addr >= 0xf0) && (addr <= 0xff)) {
-               sdio_cmd52_t cmd;
+               struct sdio_cmd52 cmd;
 
                cmd.read_write = 0;
                cmd.function = 0;
@@ -670,7 +670,7 @@ static int sdio_deinit(struct wilc *wilc)
 static int sdio_init(struct wilc *wilc, bool resume)
 {
        struct sdio_func *func = dev_to_sdio_func(wilc->dev);
-       sdio_cmd52_t cmd;
+       struct sdio_cmd52 cmd;
        int loop, ret;
        u32 chipid;
 
@@ -791,7 +791,7 @@ _fail_:
 static int sdio_read_size(struct wilc *wilc, u32 *size)
 {
        u32 tmp;
-       sdio_cmd52_t cmd;
+       struct sdio_cmd52 cmd;
 
        /**
         *      Read DMA count in words
@@ -820,7 +820,7 @@ static int sdio_read_int(struct wilc *wilc, u32 *int_status)
 {
        struct sdio_func *func = dev_to_sdio_func(wilc->dev);
        u32 tmp;
-       sdio_cmd52_t cmd;
+       struct sdio_cmd52 cmd;
 
        sdio_read_size(wilc, &tmp);
 
@@ -899,7 +899,7 @@ static int sdio_clear_int_ext(struct wilc *wilc, u32 val)
                if ((val & EN_VMM) == EN_VMM)
                        reg |= BIT(7);
                if (reg) {
-                       sdio_cmd52_t cmd;
+                       struct sdio_cmd52 cmd;
 
                        cmd.read_write = 1;
                        cmd.function = 0;
@@ -929,7 +929,7 @@ static int sdio_clear_int_ext(struct wilc *wilc, u32 val)
                                ret = 1;
                                for (i = 0; i < g_sdio.nint; i++) {
                                        if (flags & 1) {
-                                               sdio_cmd52_t cmd;
+                                               struct sdio_cmd52 cmd;
 
                                                cmd.read_write = 1;
                                                cmd.function = 0;
@@ -977,7 +977,7 @@ static int sdio_clear_int_ext(struct wilc *wilc, u32 val)
                                vmm_ctl |= BIT(2);
 
                        if (vmm_ctl) {
-                               sdio_cmd52_t cmd;
+                               struct sdio_cmd52 cmd;
 
                                cmd.read_write = 1;
                                cmd.function = 0;
index f19ecb523d72edc8c64cebe74c2f5d2a589f1c96..99aaec782090c72932d42d73f0ba9a6c7642b5b1 100644 (file)
  *
  ********************************************/
 
-typedef struct {
+struct sdio_cmd52 {
        u32 read_write:         1;
        u32 function:           3;
        u32 raw:                1;
        u32 address:            17;
        u32 data:               8;
-} sdio_cmd52_t;
+};
 
 typedef struct {
        /* struct { */