Skip to content

Commit

Permalink
staging: comedi: amplc_dio200: fix C99 array initializer warnings
Browse files Browse the repository at this point in the history
This patch fixes the following sparse warnings about use of
obsolete array initializer:

drivers/staging/comedi/drivers/amplc_dio200_pci.c:256:24: warning:
	obsolete array initializer, use C99 syntax
drivers/staging/comedi/drivers/amplc_dio200_pci.c:269:24: warning:
	obsolete array initializer, use C99 syntax
drivers/staging/comedi/drivers/amplc_dio200_pci.c:281:25: warning:
	obsolete array initializer, use C99 syntax
drivers/staging/comedi/drivers/amplc_dio200_pci.c:298:25: warning:
	obsolete array initializer, use C99 syntax
drivers/staging/comedi/drivers/amplc_dio200_pci.c:315:25: warning:
	obsolete array initializer, use C99 syntax

Signed-off-by: Emil Goode <emilgoode@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Emil Goode authored and Greg Kroah-Hartman committed Mar 28, 2013
1 parent 0d7ddc0 commit 698f57f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions drivers/staging/comedi/drivers/amplc_dio200_pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ enum dio200_pci_model {
};

static const struct dio200_board dio200_pci_boards[] = {
[pci215_model] {
[pci215_model] = {
.name = "pci215",
.bustype = pci_bustype,
.mainbar = 2,
Expand All @@ -266,7 +266,7 @@ static const struct dio200_board dio200_pci_boards[] = {
.has_clk_gat_sce = true,
},
},
[pci272_model] {
[pci272_model] = {
.name = "pci272",
.bustype = pci_bustype,
.mainbar = 2,
Expand All @@ -278,7 +278,7 @@ static const struct dio200_board dio200_pci_boards[] = {
.has_int_sce = true,
},
},
[pcie215_model] {
[pcie215_model] = {
.name = "pcie215",
.bustype = pci_bustype,
.mainbar = 1,
Expand All @@ -295,7 +295,7 @@ static const struct dio200_board dio200_pci_boards[] = {
.has_enhancements = true,
},
},
[pcie236_model] {
[pcie236_model] = {
.name = "pcie236",
.bustype = pci_bustype,
.mainbar = 1,
Expand All @@ -312,7 +312,7 @@ static const struct dio200_board dio200_pci_boards[] = {
.has_enhancements = true,
},
},
[pcie296_model] {
[pcie296_model] = {
.name = "pcie296",
.bustype = pci_bustype,
.mainbar = 1,
Expand Down

0 comments on commit 698f57f

Please sign in to comment.