]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
Merge branch 'master' into for-next
authorJiri Kosina <jkosina@suse.cz>
Mon, 11 Jul 2011 12:15:48 +0000 (14:15 +0200)
committerJiri Kosina <jkosina@suse.cz>
Mon, 11 Jul 2011 12:15:55 +0000 (14:15 +0200)
Sync with Linus' tree to be able to apply pending patches that
are based on newer code already present upstream.

30 files changed:
1  2 
Documentation/feature-removal-schedule.txt
MAINTAINERS
arch/arm/mach-at91/at91sam9261_devices.c
arch/arm/mach-shmobile/board-ap4evb.c
arch/avr32/mach-at32ap/intc.c
arch/powerpc/sysdev/fsl_rio.c
arch/s390/oprofile/init.c
arch/sh/boards/mach-ecovec24/setup.c
arch/x86/kvm/mmu.c
drivers/media/rc/ite-cir.c
drivers/media/video/m5mols/m5mols_capture.c
drivers/media/video/omap/omap_vout.c
drivers/mmc/host/vub300.c
drivers/net/natsemi.c
drivers/net/pxa168_eth.c
drivers/ssb/driver_pcicore.c
drivers/target/loopback/tcm_loop.c
drivers/target/tcm_fc/tfc_cmd.c
drivers/target/tcm_fc/tfc_io.c
drivers/target/tcm_fc/tfc_sess.c
drivers/tty/serial/8250_pci.c
drivers/usb/gadget/fsl_udc_core.c
drivers/usb/host/ehci-ath79.c
drivers/video/aty/atyfb_base.c
drivers/video/udlfb.c
include/linux/fs.h
kernel/exit.c
kernel/sched.c
sound/atmel/abdac.c
sound/atmel/ac97c.c

index 6f55333424bd5b28026b6fb8ff2c354e54e15d3b,72e238465b0b6ca452ee4905dc097007b9ff3dc0..5d24fa211f042f4270fe180b72df264731a61f3d
@@@ -481,25 -481,8 +481,8 @@@ Who:      FUJITA Tomonori <fujita.tomonori@l
  
  ----------------------------
  
- What:   namespace cgroup (ns_cgroup)
- When:   2.6.38
- Why:    The ns_cgroup leads to some problems:
-       * cgroup creation is out-of-control
-       * cgroup name can conflict when pids are looping
-       * it is not possible to have a single process handling
-       a lot of namespaces without falling in a exponential creation time
-       * we may want to create a namespace without creating a cgroup
-       The ns_cgroup is replaced by a compatibility flag 'clone_children',
-       where a newly created cgroup will copy the parent cgroup values.
-       The userspace has to manually create a cgroup and add a task to
-       the 'tasks' file.
- Who:    Daniel Lezcano <daniel.lezcano@free.fr>
- ----------------------------
  What: iwlwifi disable_hw_scan module parameters
 -When: 2.6.40
 +When: 3.0
  Why:  Hareware scan is the prefer method for iwlwifi devices for
        scanning operation. Remove software scan support for all the
        iwlwifi devices.
diff --cc MAINTAINERS
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
index f80478f36d56875887988390bbc2688f25f0baa9,513cb1a2e6c830bc2d25cf27cf485ff8b37c37f8..b24d69d509e7d7ccfe7e78454fca4014b5c286a4
@@@ -232,8 -233,54 +233,54 @@@ static struct platform_device usb1_comm
        .resource       = usb1_common_resources,
  };
  
+ /*
+  * USBHS
+  */
+ static int usbhs_get_id(struct platform_device *pdev)
+ {
+       return gpio_get_value(GPIO_PTB3);
+ }
+ static struct renesas_usbhs_platform_info usbhs_info = {
+       .platform_callback = {
+               .get_id         = usbhs_get_id,
+       },
+       .driver_param = {
+               .buswait_bwait          = 4,
+               .detection_delay        = 5,
+       },
+ };
+ static struct resource usbhs_resources[] = {
+       [0] = {
+               .start  = 0xa4d90000,
+               .end    = 0xa4d90124 - 1,
+               .flags  = IORESOURCE_MEM,
+       },
+       [1] = {
+               .start  = 66,
+               .end    = 66,
+               .flags  = IORESOURCE_IRQ,
+       },
+ };
+ static struct platform_device usbhs_device = {
+       .name   = "renesas_usbhs",
+       .id     = 1,
+       .dev = {
+               .dma_mask               = NULL,         /*  not use dma */
+               .coherent_dma_mask      = 0xffffffff,
+               .platform_data          = &usbhs_info,
+       },
+       .num_resources  = ARRAY_SIZE(usbhs_resources),
+       .resource       = usbhs_resources,
+       .archdata = {
+               .hwblk_id = HWBLK_USB1,
+       },
+ };
  /* LCDC */
 -const static struct fb_videomode ecovec_lcd_modes[] = {
 +static const struct fb_videomode ecovec_lcd_modes[] = {
        {
                .name           = "Panel",
                .xres           = 800,
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
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 kernel/exit.c
Simple merge
diff --cc kernel/sched.c
Simple merge
Simple merge
Simple merge