]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
arcnet: reformat structs to C99 format
authorMichael Grzeschik <m.grzeschik@pengutronix.de>
Fri, 20 Mar 2015 14:22:02 +0000 (15:22 +0100)
committerMichael Grzeschik <m.grzeschik@pengutronix.de>
Wed, 23 Sep 2015 06:44:28 +0000 (08:44 +0200)
This patch changes the macro definitions to match the C99
formating. This improves the readability.

Signed-off-by: Michael Grzeschik <m.grzeschik@pengutronix.de>
drivers/net/arcnet/capmode.c
drivers/net/arcnet/com20020-pci.c

index 2f2d0d94a80d6872aa1824a21158fe9f37a59eeb..8297e004dc26f233c545d34dad70e6c2ab474b36 100644 (file)
@@ -230,14 +230,12 @@ free_outskb:
 }
 
 static struct ArcProto capmode_proto = {
-       'r',
-       XMTU,
-       0,
-       rx,
-       build_header,
-       prepare_tx,
-       NULL,
-       ack_tx
+       .suffix         = 'r',
+       .mtu            = XMTU,
+       .rx             = rx,
+       .build_header   = build_header,
+       .prepare_tx     = prepare_tx,
+       .ack_tx         = ack_tx
 };
 
 static void arcnet_cap_init(void)
index 9b8212663320c354efd6a254506ddb5985126955..a12bf83be7502dd6e4262907a45dc05efb090b80 100644 (file)
@@ -188,7 +188,11 @@ static struct com20020_pci_card_info card_info_10mbit = {
        .name = "ARC-PCI",
        .devcount = 1,
        .chan_map_tbl = {
-               { 2, 0x00, 0x08 },
+               {
+                       .bar = 2,
+                       .offset = 0x00,
+                       .size = 0x08,
+               },
        },
        .flags = ARC_CAN_10MBIT,
 };
@@ -197,7 +201,11 @@ static struct com20020_pci_card_info card_info_5mbit = {
        .name = "ARC-PCI",
        .devcount = 1,
        .chan_map_tbl = {
-               { 2, 0x00, 0x08 },
+               {
+                       .bar = 2,
+                       .offset = 0x00,
+                       .size = 0x08,
+               },
        },
        .flags = ARC_IS_5MBIT,
 };
@@ -207,7 +215,11 @@ static struct com20020_pci_card_info card_info_sohard = {
        .devcount = 1,
        /* SOHARD needs PCI base addr 4 */
        .chan_map_tbl = {
-               {4, 0x00, 0x08},
+               {
+                       .bar = 4,
+                       .offset = 0x00,
+                       .size = 0x08
+               },
        },
        .flags = ARC_CAN_10MBIT,
 };
@@ -216,7 +228,11 @@ static struct com20020_pci_card_info card_info_eae_arc1 = {
        .name = "EAE PLX-PCI ARC1",
        .devcount = 1,
        .chan_map_tbl = {
-               { 2, 0x00, 0x08 },
+               {
+                       .bar = 2,
+                       .offset = 0x00,
+                       .size = 0x08,
+               },
        },
        .flags = ARC_CAN_10MBIT,
 };
@@ -225,8 +241,15 @@ static struct com20020_pci_card_info card_info_eae_ma1 = {
        .name = "EAE PLX-PCI MA1",
        .devcount = 2,
        .chan_map_tbl = {
-               { 2, 0x00, 0x08 },
-               { 2, 0x08, 0x08 }
+               {
+                       .bar = 2,
+                       .offset = 0x00,
+                       .size = 0x08,
+               }, {
+                       .bar = 2,
+                       .offset = 0x08,
+                       .size = 0x08,
+               }
        },
        .flags = ARC_CAN_10MBIT,
 };