Merge with /home/tmlind/src/kernel/linux-2.6
authorTony Lindgren <tony@atomide.com>
Mon, 23 Oct 2006 14:04:31 +0000 (17:04 +0300)
committerTony Lindgren <tony@atomide.com>
Mon, 23 Oct 2006 14:04:31 +0000 (17:04 +0300)
47 files changed:
1  2 
Makefile
arch/arm/Kconfig
arch/arm/Makefile
arch/arm/boot/compressed/Makefile
arch/arm/mach-omap1/board-h2.c
arch/arm/mach-omap1/board-h3.c
arch/arm/mach-omap1/board-nokia770.c
arch/arm/mach-omap1/board-osk.c
arch/arm/mach-omap1/pm.c
arch/arm/mach-omap2/board-apollon.c
arch/arm/mach-omap2/board-h4.c
arch/arm/mach-omap2/irq.c
arch/arm/mach-omap2/serial.c
arch/arm/plat-omap/dma.c
arch/arm/plat-omap/gpio.c
arch/arm/plat-omap/mcbsp.c
drivers/Kconfig
drivers/Makefile
drivers/char/Kconfig
drivers/char/Makefile
drivers/char/watchdog/Kconfig
drivers/char/watchdog/Makefile
drivers/i2c/Kconfig
drivers/i2c/busses/Kconfig
drivers/i2c/busses/Makefile
drivers/i2c/chips/isp1301_omap.c
drivers/input/touchscreen/ads7846.c
drivers/media/video/Kconfig
drivers/media/video/Makefile
drivers/mtd/nand/Kconfig
drivers/net/irda/Kconfig
drivers/net/smc91x.c
drivers/rtc/Kconfig
drivers/rtc/Makefile
drivers/usb/Kconfig
drivers/usb/gadget/Kconfig
drivers/usb/gadget/omap_udc.c
drivers/video/Kconfig
drivers/video/Makefile
include/asm-arm/setup.h
include/linux/fb.h
include/linux/i2c-id.h
include/linux/input.h
kernel/printk.c
net/ipv4/netfilter/Kconfig
net/ipv4/netfilter/Makefile
sound/oss/Makefile

diff --cc Makefile
Simple merge
Simple merge
Simple merge
@@@ -50,12 -50,12 +50,16 @@@ ifeq ($(CONFIG_ARCH_AT91RM9200),y
  OBJS          += head-at91rm9200.o
  endif
  
 +ifeq ($(CONFIG_MACH_OMAP_PERSEUS2),y)
 +OBJS          += head-omap.o
 +endif
 +
  ifeq ($(CONFIG_CPU_BIG_ENDIAN),y)
+ ifeq ($(CONFIG_CPU_CP15),y)
  OBJS          += big-endian.o
+ else
+ # The endian should be set by h/w design.
+ endif
  endif
  
  #
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
diff --cc drivers/Kconfig
Simple merge
Simple merge
Simple merge
@@@ -65,9 -68,7 +68,8 @@@ obj-$(CONFIG_GEN_RTC)         += genrtc.
  obj-$(CONFIG_EFI_RTC)         += efirtc.o
  obj-$(CONFIG_SGI_DS1286)      += ds1286.o
  obj-$(CONFIG_SGI_IP27_RTC)    += ip27-rtc.o
 +obj-$(CONFIG_OMAP_RTC)                += omap-rtc.o
  obj-$(CONFIG_DS1302)          += ds1302.o
- obj-$(CONFIG_S3C2410_RTC)     += s3c2410-rtc.o
  ifeq ($(CONFIG_GENERIC_NVRAM),y)
    obj-$(CONFIG_NVRAM) += generic_nvram.o
  else
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
@@@ -588,10 -485,9 +588,10 @@@ static int ads7846_timer(struct hrtime
        }
  
        spin_unlock_irq(&ts->lock);
 +      return HRTIMER_NORESTART;
  }
  
- static irqreturn_t ads7846_irq(int irq, void *handle, struct pt_regs *regs)
+ static irqreturn_t ads7846_irq(int irq, void *handle)
  {
        struct ads7846 *ts = handle;
        unsigned long flags;
Simple merge
@@@ -68,11 -86,8 +86,9 @@@ obj-$(CONFIG_VIDEO_BTCX)  += btcx-risc.
  obj-$(CONFIG_VIDEO_TVEEPROM) += tveeprom.o
  
  obj-$(CONFIG_VIDEO_M32R_AR_M64278) += arv.o
 +obj-$(CONFIG_VIDEO_OMAP_CAMERA) += omap/
  
  obj-$(CONFIG_VIDEO_CX25840) += cx25840/
- obj-$(CONFIG_VIDEO_SAA711X) += saa7115.o
- obj-$(CONFIG_VIDEO_SAA7127) += saa7127.o
  obj-$(CONFIG_VIDEO_UPD64031A) += upd64031a.o
  obj-$(CONFIG_VIDEO_UPD64083) += upd64083.o
  obj-$(CONFIG_VIDEO_CX2341X) += cx2341x.o
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
@@@ -40,9 -40,8 +40,9 @@@
  #include <linux/platform_device.h>
  #include <linux/usb_ch9.h>
  #include <linux/usb_gadget.h>
- #include <linux/usb_otg.h>
+ #include <linux/usb/otg.h>
  #include <linux/dma-mapping.h>
 +#include <linux/clk.h>
  
  #include <asm/byteorder.h>
  #include <asm/io.h>
@@@ -1601,12 -1628,10 +1628,13 @@@ config FB_VIRTUA
          kernel option `video=vfb:'.
  
          To compile this driver as a module, choose M here: the
-         module will be called vfb.
+         module will be called vfb. In order to load it, you must use
+         the vfb_enable=1 option.
  
          If unsure, say N.
 +
 +source "drivers/video/omap/Kconfig"
 +
  if VT
        source "drivers/video/console/Kconfig"
  endif
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
diff --cc kernel/printk.c
Simple merge
Simple merge
Simple merge
Simple merge