Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 258661
b: refs/heads/master
c: bcacff2
h: refs/heads/master
i:
  258659: 36fc880
v: v3
  • Loading branch information
Arnd Bergmann committed Jul 17, 2011
1 parent f63bd08 commit c5213d9
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 62778396020a29d742abf980c1e83f3df4b5426e
refs/heads/master: bcacff291c96c163da9341b764f0ccdeb97b38ad
2 changes: 1 addition & 1 deletion trunk/arch/arm/mach-cns3xxx/include/mach/vmalloc.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
* published by the Free Software Foundation.
*/

#define VMALLOC_END 0xd8000000
#define VMALLOC_END 0xd8000000UL
2 changes: 1 addition & 1 deletion trunk/arch/arm/mach-lpc32xx/include/mach/vmalloc.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
#ifndef __ASM_ARCH_VMALLOC_H
#define __ASM_ARCH_VMALLOC_H

#define VMALLOC_END 0xF0000000
#define VMALLOC_END 0xF0000000UL

#endif
2 changes: 1 addition & 1 deletion trunk/arch/arm/mach-mmp/pxa168.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ static APBC_CLK(ssp4, PXA168_SSP4, 4, 0);
static APBC_CLK(ssp5, PXA168_SSP5, 4, 0);
static APBC_CLK(keypad, PXA168_KPC, 0, 32000);

static APMU_CLK(nand, NAND, 0x01db, 208000000);
static APMU_CLK(nand, NAND, 0x19b, 156000000);
static APMU_CLK(lcd, LCD, 0x7f, 312000000);

/* device and clock bindings */
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/arm/mach-mmp/pxa910.c
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ static APBC_CLK(pwm2, PXA910_PWM2, 1, 13000000);
static APBC_CLK(pwm3, PXA910_PWM3, 1, 13000000);
static APBC_CLK(pwm4, PXA910_PWM4, 1, 13000000);

static APMU_CLK(nand, NAND, 0x01db, 208000000);
static APMU_CLK(nand, NAND, 0x19b, 156000000);
static APMU_CLK(u2o, USB, 0x1b, 480000000);

/* device and clock bindings */
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/arm/mach-nuc93x/include/mach/vmalloc.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
#ifndef __ASM_ARCH_VMALLOC_H
#define __ASM_ARCH_VMALLOC_H

#define VMALLOC_END (0xE0000000)
#define VMALLOC_END 0xE0000000UL

#endif /* __ASM_ARCH_VMALLOC_H */
4 changes: 2 additions & 2 deletions trunk/arch/arm/mach-pxa/mfp-pxa2xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -347,9 +347,9 @@ static int pxa2xx_mfp_suspend(void)
if ((gpio_desc[i].config & MFP_LPM_KEEP_OUTPUT) &&
(GPDR(i) & GPIO_bit(i))) {
if (GPLR(i) & GPIO_bit(i))
PGSR(i) |= GPIO_bit(i);
PGSR(gpio_to_bank(i)) |= GPIO_bit(i);
else
PGSR(i) &= ~GPIO_bit(i);
PGSR(gpio_to_bank(i)) &= ~GPIO_bit(i);
}
}

Expand Down

0 comments on commit c5213d9

Please sign in to comment.