]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
arm: msm: smd: convert unsigned addr to unsigned long
authorDaniel Walker <dwalker@codeaurora.org>
Wed, 17 Mar 2010 16:58:29 +0000 (09:58 -0700)
committerDaniel Walker <dwalker@codeaurora.org>
Wed, 12 May 2010 16:19:03 +0000 (09:19 -0700)
"unsigned" translates to "unsigned int", but this value holds an
address. We always want to use unsigned long for addresses since
it will change size to fit the machine.

This just convert the one address holder to unsigned long.

Signed-off-by: Daniel Walker <dwalker@codeaurora.org>
arch/arm/mach-msm/smd.c

index 130b7a72bea1585af3c320690fa74d2c01b46105..2e32d9ab3609a273149c93c5cdbd72afc54fa92c 100644 (file)
@@ -872,9 +872,9 @@ static irqreturn_t smsm_irq_handler(int irq, void *data)
 int smsm_change_state(enum smsm_state_item item,
                      uint32_t clear_mask, uint32_t set_mask)
 {
+       unsigned long addr = smd_info.state + item * 4;
        unsigned long flags;
        unsigned state;
-       unsigned addr = smd_info.state + item * 4;
 
        if (!smd_info.ready)
                return -EIO;