Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b85c14fb authored by Linus Torvalds's avatar Linus Torvalds
Browse files
Pull non-critical arm-soc bug fixes from Arnd Bergmann:
 "These were submitted as bug fixes before v3.5 but not considered
  important enough to be included in it."

* tag 'fixes-non-critical' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc: (29 commits)
  ARM:vt8500: Convert to use .restart and remove arch_reset()
  ARM: davinci: da8xx: fix interrupt handling
  ARM: OMAP2+: fix CONFIG_CPU_IDLE dependency on CONFIG_PM
  ARM: mxs/tx28: fix odd include
  ARM: OMAP: remove unused cpu detection macros
  ARM: OMAP: fix typos related to OMAP330
  ARM: OMAP7XX:  Remove omap730.h and omap850.h
  ARM: OMAP2+: fix naming collision of variable nr_irqs
  ARM: OMAP: omap2plus_defconfig: Enable EXT4 support
  ARM: OMAP depends on MMU
  arm: omap3: am35x: Set proper powerdomain states
  ARM: OMAP AM35x: clockdomain data: Fix clockdomain dependencies
  ARM: OMAP AM35x: EMAC/MDIO integration: Add Davinci EMAC/MDIO hwmod support
  ARM: OMAP: AM35xx: fix UART4 softreset
  ARM: OMAP AM35xx: clock and hwmod data: fix UART4 data
  ARM: OMAP AM35xx: clock and hwmod data: fix AM35xx HSOTGUSB hwmod
  ARM: OMAP: Fix dts files w/ status property: "disable" -> "disabled"
  ARM: OMAP: beagle: Set USB Host Port 1 to OMAP_USBHS_PORT_MODE_UNUSED
  ARM: OMAP2: twl-common: Fix compiler warning
  ARM: OMAP: fix the ads7846 init code
  ...
parents ce447f34 913bdf12
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -936,6 +936,7 @@ config ARCH_DAVINCI

config ARCH_OMAP
	bool "TI OMAP"
	depends on MMU
	select HAVE_CLK
	select ARCH_REQUIRE_GPIOLIB
	select ARCH_HAS_CPUFREQ
+2 −2
Original line number Diff line number Diff line
@@ -61,9 +61,9 @@
};

&mmc2 {
	status = "disable";
	status = "disabled";
};

&mmc3 {
	status = "disable";
	status = "disabled";
};
+3 −3
Original line number Diff line number Diff line
@@ -74,15 +74,15 @@
};

&mmc2 {
	status = "disable";
	status = "disabled";
};

&mmc3 {
	status = "disable";
	status = "disabled";
};

&mmc4 {
	status = "disable";
	status = "disabled";
};

&mmc5 {
+2 −2
Original line number Diff line number Diff line
@@ -147,11 +147,11 @@
};

&mmc3 {
	status = "disable";
	status = "disabled";
};

&mmc4 {
	status = "disable";
	status = "disabled";
};

&mmc5 {
+1 −0
Original line number Diff line number Diff line
@@ -196,6 +196,7 @@ CONFIG_RTC_DRV_TWL4030=y
CONFIG_EXT2_FS=y
CONFIG_EXT3_FS=y
# CONFIG_EXT3_FS_XATTR is not set
CONFIG_EXT4_FS=y
CONFIG_QUOTA=y
CONFIG_QFMT_V2=y
CONFIG_MSDOS_FS=y
Loading