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

Commit f57c0e04 authored by Olof Johansson's avatar Olof Johansson
Browse files

Merge tag 'samsung-cleanup' of...

Merge tag 'samsung-cleanup' of git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung into next/cleanup

Merge "Samsung cleanup for v3.17" from Kukjin Kim:

Most of them are for exynos SoCs, remove useless codes and update for
PMU consolidation.

- remove unnecessary header file in mach-exynos/pmu.c
- remove unused code in mach-exynos/common.h
- remove mach-exynos/regs-pmu.h dependency from PD
- remove file path from comment section in mach-exynos

- move SYSREG definitions into mach-exynos/regs-sys.h

- add mapping PMU base address via DT for PMU cleanup

- use staic in mach-exynos/common.h
- update Samsung UART config options for low-level debug

* tag 'samsung-cleanup' of git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung

:
  ARM: EXYNOS: Add support for mapping PMU base address via DT
  ARM: EXYNOS: Remove "linux/bug.h" from pmu.c
  ARM: EXYNOS: Remove regs-pmu.h header dependency from pm_domain
  ARM: EXYNOS: Remove file path from comment section
  ARM: EXYNOS: Move SYSREG definition into sys-reg specific file
  ARM: EXYNOS: Make exynos machine_ops as static
  ARM: EXYNOS: Remove unused code in common.h
  ARM: debug: Update Samsung UART config options
  + Linux 3.16-rc5

Signed-off-by: default avatarOlof Johansson <olof@lixom.net>
parents c6b659c0 fce9e5bb
Loading
Loading
Loading
Loading
+3 −6
Original line number Original line Diff line number Diff line
@@ -280,12 +280,9 @@ that is possible.
mcelog
mcelog
------
------


In Linux 2.6.31+ the i386 kernel needs to run the mcelog utility
On x86 kernels the mcelog utility is needed to process and log machine check
as a regular cronjob similar to the x86-64 kernel to process and log
events when CONFIG_X86_MCE is enabled. Machine check events are errors reported
machine check events when CONFIG_X86_NEW_MCE is enabled. Machine check
by the CPU. Processing them is strongly encouraged.
events are errors reported by the CPU. Processing them is strongly encouraged.
All x86-64 kernels since 2.6.4 require the mcelog utility to
process machine checks.


Getting updated software
Getting updated software
========================
========================
+1 −1
Original line number Original line Diff line number Diff line
@@ -708,7 +708,7 @@ hardware level details could be very different.


<para>Systems need specialized hardware support to implement OTG,
<para>Systems need specialized hardware support to implement OTG,
notably including a special <emphasis>Mini-AB</emphasis> jack
notably including a special <emphasis>Mini-AB</emphasis> jack
and associated transciever to support <emphasis>Dual-Role</emphasis>
and associated transceiver to support <emphasis>Dual-Role</emphasis>
operation:
operation:
they can act either as a host, using the standard
they can act either as a host, using the standard
Linux-USB host side driver stack,
Linux-USB host side driver stack,
+2 −2
Original line number Original line Diff line number Diff line
@@ -182,7 +182,7 @@
	<para>
	<para>
	Each interrupt is described by an interrupt descriptor structure
	Each interrupt is described by an interrupt descriptor structure
	irq_desc. The interrupt is referenced by an 'unsigned int' numeric
	irq_desc. The interrupt is referenced by an 'unsigned int' numeric
	value which selects the corresponding interrupt decription structure
	value which selects the corresponding interrupt description structure
	in the descriptor structures array.
	in the descriptor structures array.
	The descriptor structure contains status information and pointers
	The descriptor structure contains status information and pointers
	to the interrupt flow method and the interrupt chip structure
	to the interrupt flow method and the interrupt chip structure
@@ -470,7 +470,7 @@ if (desc->irq_data.chip->irq_eoi)
     <para>
     <para>
       To avoid copies of identical implementations of IRQ chips the
       To avoid copies of identical implementations of IRQ chips the
       core provides a configurable generic interrupt chip
       core provides a configurable generic interrupt chip
       implementation. Developers should check carefuly whether the
       implementation. Developers should check carefully whether the
       generic chip fits their needs before implementing the same
       generic chip fits their needs before implementing the same
       functionality slightly differently themselves.
       functionality slightly differently themselves.
     </para>
     </para>
+1 −1
Original line number Original line Diff line number Diff line
@@ -1760,7 +1760,7 @@ as it would be on UP.
</para>
</para>


<para>
<para>
There is a furthur optimization possible here: remember our original
There is a further optimization possible here: remember our original
cache code, where there were no reference counts and the caller simply
cache code, where there were no reference counts and the caller simply
held the lock whenever using the object?  This is still possible: if
held the lock whenever using the object?  This is still possible: if
you hold the lock, no one can delete the object, so you don't need to
you hold the lock, no one can delete the object, so you don't need to
+3 −3
Original line number Original line Diff line number Diff line
@@ -677,7 +677,7 @@ and other resources, etc.


	<listitem>
	<listitem>
	<para>
	<para>
	ATA_QCFLAG_ACTIVE is clared from qc->flags.
	ATA_QCFLAG_ACTIVE is cleared from qc->flags.
	</para>
	</para>
	</listitem>
	</listitem>


@@ -708,7 +708,7 @@ and other resources, etc.


	   <listitem>
	   <listitem>
	   <para>
	   <para>
	   qc->waiting is claread &amp; completed (in that order).
	   qc->waiting is cleared &amp; completed (in that order).
	   </para>
	   </para>
	   </listitem>
	   </listitem>


@@ -1163,7 +1163,7 @@ and other resources, etc.


	<para>
	<para>
	Once sense data is acquired, this type of errors can be
	Once sense data is acquired, this type of errors can be
	handled similary to other SCSI errors.  Note that sense data
	handled similarly to other SCSI errors.  Note that sense data
	may indicate ATA bus error (e.g. Sense Key 04h HARDWARE ERROR
	may indicate ATA bus error (e.g. Sense Key 04h HARDWARE ERROR
	&amp;&amp; ASC/ASCQ 47h/00h SCSI PARITY ERROR).  In such
	&amp;&amp; ASC/ASCQ 47h/00h SCSI PARITY ERROR).  In such
	cases, the error should be considered as an ATA bus error and
	cases, the error should be considered as an ATA bus error and
Loading