Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 54047
b: refs/heads/master
c: 6f95416
h: refs/heads/master
i:
  54045: 3bf3f06
  54043: 048e807
  54039: b1940fc
  54031: f82a9e8
  54015: c905af7
v: v3
  • Loading branch information
Russell King authored and Russell King committed May 6, 2007
1 parent 742031b commit 624d9a1
Show file tree
Hide file tree
Showing 145 changed files with 5,493 additions and 1,379 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: d0a9d75b9cd9cc8097c746611cc57cc8438b94be
refs/heads/master: 6f95416ebe81b3ad63884538555efb81cb05749f
2 changes: 1 addition & 1 deletion trunk/Documentation/spi/pxa2xx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ static struct resource pxa_spi_nssp_resources[] = {

static struct pxa2xx_spi_master pxa_nssp_master_info = {
.ssp_type = PXA25x_NSSP, /* Type of SSP */
.clock_enable = CKEN9_NSSP, /* NSSP Peripheral clock */
.clock_enable = CKEN_NSSP, /* NSSP Peripheral clock */
.num_chipselect = 1, /* Matches the number of chips attached to NSSP */
.enable_dma = 1, /* Enables NSSP DMA */
};
Expand Down
20 changes: 20 additions & 0 deletions trunk/arch/arm/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ config GENERIC_TIME
bool
default n

config GENERIC_CLOCKEVENTS
bool
default n

config MMU
bool
default y
Expand Down Expand Up @@ -67,6 +71,14 @@ config GENERIC_HARDIRQS
bool
default y

config STACKTRACE_SUPPORT
bool
default y

config LOCKDEP_SUPPORT
bool
default y

config TRACE_IRQFLAGS_SUPPORT
bool
default y
Expand Down Expand Up @@ -162,6 +174,8 @@ config ARCH_VERSATILE
select ARM_AMBA
select ARM_VIC
select ICST307
select GENERIC_TIME
select GENERIC_CLOCKEVENTS
help
This enables support for ARM Ltd Versatile board.

Expand Down Expand Up @@ -262,6 +276,7 @@ config ARCH_IXP4XX
bool "IXP4xx-based"
depends on MMU
select GENERIC_TIME
select GENERIC_CLOCKEVENTS
help
Support for Intel's IXP4XX (XScale) family of processors.

Expand Down Expand Up @@ -363,6 +378,7 @@ config ARCH_LH7A40X
config ARCH_OMAP
bool "TI OMAP"
select GENERIC_GPIO
select GENERIC_TIME
help
Support for TI's OMAP platform (OMAP1 and OMAP2).

Expand Down Expand Up @@ -513,6 +529,8 @@ endmenu

menu "Kernel Features"

source "kernel/time/Kconfig"

config SMP
bool "Symmetric Multi-Processing (EXPERIMENTAL)"
depends on EXPERIMENTAL && REALVIEW_MPCORE
Expand Down Expand Up @@ -572,6 +590,7 @@ config PREEMPT

config NO_IDLE_HZ
bool "Dynamic tick timer"
depends on !GENERIC_CLOCKEVENTS
help
Select this option if you want to disable continuous timer ticks
and have them programmed to occur as required. This option saves
Expand Down Expand Up @@ -669,6 +688,7 @@ config LEDS_TIMER
bool "Timer LED" if (!ARCH_CDB89712 && !ARCH_OMAP) || \
MACH_OMAP_H2 || MACH_OMAP_PERSEUS2
depends on LEDS
depends on !GENERIC_CLOCKEVENTS
default y if ARCH_EBSA110
help
If you say Y here, one of the system LEDs (the green one on the
Expand Down
6 changes: 6 additions & 0 deletions trunk/arch/arm/boot/compressed/head-at91rm9200.S
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,12 @@
cmp r7, r3
beq 99f

@ picotux 200 : 963
mov r3, #(MACH_TYPE_PICOTUX2XX & 0xff)
orr r3, r3, #(MACH_TYPE_PICOTUX2XX & 0xff00)
cmp r7, r3
beq 99f

@ Ajeco 1ARM : 1075
mov r3, #(MACH_TYPE_ONEARM & 0xff)
orr r3, r3, #(MACH_TYPE_ONEARM & 0xff00)
Expand Down
Loading

0 comments on commit 624d9a1

Please sign in to comment.