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

Commit dc257cf1 authored by Daniel Vetter's avatar Daniel Vetter
Browse files

Merge tag 'v3.4-rc6' into drm-intel-next



Conflicts:
	drivers/gpu/drm/i915/intel_display.c

Ok, this is a fun story of git totally messing things up. There
/shouldn't/ be any conflict in here, because the fixes in -rc6 do only
touch functions that have not been changed in -next.

The offending commits in drm-next are 14415745..1fa61106 which
simply move a few functions from intel_display.c to intel_pm.c. The
problem seems to be that git diff gets completely confused:

$ git diff 14415745..1fa61106

is a nice mess in intel_display.c, and the diff leaks into totally
unrelated functions, whereas

$git diff --minimal  14415745..1fa61106

is exactly what we want.

Unfortunately there seems to be no way to teach similar smarts to the
merge diff and conflict generation code, because with the minimal diff
there really shouldn't be any conflicts. For added hilarity, every
time something in that area changes the + and - lines in the diff move
around like crazy, again resulting in new conflicts. So I fear this
mess will stay with us for a little longer (and might result in
another backmerge down the road).

Signed-Off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parents 5bc69bf9 d48b97b4
Loading
Loading
Loading
Loading
+19 −0
Original line number Original line Diff line number Diff line
What:		/sys/bus/hsi
Date:		April 2012
KernelVersion:	3.4
Contact:	Carlos Chinea <carlos.chinea@nokia.com>
Description:
		High Speed Synchronous Serial Interface (HSI) is a
		serial interface mainly used for connecting application
		engines (APE) with cellular modem engines (CMT) in cellular
		handsets.
		The bus will be populated with devices (hsi_clients) representing
		the protocols available in the system. Bus drivers implement
		those protocols.

What:		/sys/bus/hsi/devices/.../modalias
Date:		April 2012
KernelVersion:	3.4
Contact:	Carlos Chinea <carlos.chinea@nokia.com>
Description:	Stores the same MODALIAS value emitted by uevent
		Format: hsi:<hsi_client device name>
+1 −1
Original line number Original line Diff line number Diff line
    <refentry id="V4L2-PIX-FMT-NV12M">
    <refentry id="V4L2-PIX-FMT-NV12M">
      <refmeta>
      <refmeta>
	<refentrytitle>V4L2_PIX_FMT_NV12M ('NV12M')</refentrytitle>
	<refentrytitle>V4L2_PIX_FMT_NV12M ('NM12')</refentrytitle>
	&manvol;
	&manvol;
      </refmeta>
      </refmeta>
      <refnamediv>
      <refnamediv>
+1 −1
Original line number Original line Diff line number Diff line
    <refentry id="V4L2-PIX-FMT-YUV420M">
    <refentry id="V4L2-PIX-FMT-YUV420M">
      <refmeta>
      <refmeta>
	<refentrytitle>V4L2_PIX_FMT_YUV420M ('YU12M')</refentrytitle>
	<refentrytitle>V4L2_PIX_FMT_YUV420M ('YM12')</refentrytitle>
	&manvol;
	&manvol;
      </refmeta>
      </refmeta>
      <refnamediv>
      <refnamediv>
+2 −3
Original line number Original line Diff line number Diff line
* Calxeda SATA Controller
* AHCI SATA Controller


SATA nodes are defined to describe on-chip Serial ATA controllers.
SATA nodes are defined to describe on-chip Serial ATA controllers.
Each SATA controller should have its own node.
Each SATA controller should have its own node.


Required properties:
Required properties:
- compatible        : compatible list, contains "calxeda,hb-ahci"
- compatible        : compatible list, contains "calxeda,hb-ahci" or "snps,spear-ahci"
- interrupts        : <interrupt mapping for SATA IRQ>
- interrupts        : <interrupt mapping for SATA IRQ>
- reg               : <registers mapping>
- reg               : <registers mapping>


@@ -14,4 +14,3 @@ Example:
                reg = <0xffe08000 0x1000>;
                reg = <0xffe08000 0x1000>;
                interrupts = <115>;
                interrupts = <115>;
        };
        };
+2 −0
Original line number Original line Diff line number Diff line
@@ -3,6 +3,8 @@
Required properties:
Required properties:
- compatible : "fsl,sgtl5000".
- compatible : "fsl,sgtl5000".


- reg : the I2C address of the device

Example:
Example:


codec: sgtl5000@0a {
codec: sgtl5000@0a {
Loading