Skip to content

Commit

Permalink
mfd: Storage class should be before const qualifier
Browse files Browse the repository at this point in the history
The C99 specification states in section 6.11.5:

The placement of a storage-class specifier other than at the beginning
of the declaration specifiers in a declaration is an obsolescent
feature.

Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Signed-off-by: Samuel Ortiz <sameo@openedhand.com>
  • Loading branch information
Tobias Klauser authored and Samuel Ortiz committed Apr 4, 2009
1 parent 47c10ed commit 3446d4b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions drivers/mfd/t7l66xb.c
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ static int t7l66xb_mmc_disable(struct platform_device *mmc)

/*--------------------------------------------------------------------------*/

const static struct resource t7l66xb_mmc_resources[] = {
static const struct resource t7l66xb_mmc_resources[] = {
{
.start = 0x800,
.end = 0x9ff,
Expand All @@ -126,7 +126,7 @@ const static struct resource t7l66xb_mmc_resources[] = {
},
};

const static struct resource t7l66xb_nand_resources[] = {
static const struct resource t7l66xb_nand_resources[] = {
{
.start = 0xc00,
.end = 0xc07,
Expand Down
2 changes: 1 addition & 1 deletion drivers/mfd/tc6393xb.c
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ static struct resource __devinitdata tc6393xb_mmc_resources[] = {
},
};

const static struct resource tc6393xb_ohci_resources[] = {
static const struct resource tc6393xb_ohci_resources[] = {
{
.start = 0x3000,
.end = 0x31ff,
Expand Down
2 changes: 1 addition & 1 deletion drivers/mfd/twl4030-irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ static int twl4030_irq_thread(void *data)
long irq = (long)data;
struct irq_desc *desc = irq_to_desc(irq);
static unsigned i2c_errors;
const static unsigned max_i2c_errors = 100;
static const unsigned max_i2c_errors = 100;

if (!desc) {
pr_err("twl4030: Invalid IRQ: %ld\n", irq);
Expand Down

0 comments on commit 3446d4b

Please sign in to comment.