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

Commit 37bef8f9 authored by Paul Mundt's avatar Paul Mundt
Browse files

Merge branches 'sh/pm-runtime' and 'common/clkfwk' into sh-fixes-for-linus

Loading
Loading
Loading
Loading
+22 −0
Original line number Diff line number Diff line
What: 		/sys/firmware/acpi/pm_profile
Date:		03-Nov-2011
KernelVersion:	v3.2
Contact:	linux-acpi@vger.kernel.org
Description: 	The ACPI pm_profile sysfs interface exports the platform
		power management (and performance) requirement expectations
		as provided by BIOS. The integer value is directly passed as
		retrieved from the FADT ACPI table.
Values:         For possible values see ACPI specification:
		5.2.9 Fixed ACPI Description Table (FADT)
		Field: Preferred_PM_Profile

		Currently these values are defined by spec:
		0 Unspecified
		1 Desktop
		2 Mobile
		3 Workstation
		4 Enterprise Server
		5 SOHO Server
		6 Appliance PC
		7 Performance Server
		>7 Reserved
+7 −0
Original line number Diff line number Diff line
@@ -71,3 +71,10 @@ Description: Value of 1 indicates the controller can honor the reset_devices
		a dump device, as kdump requires resetting the device in order
		to work reliably.

Where:		/sys/bus/pci/devices/<dev>/ccissX/transport_mode
Date:		July 2011
Kernel Version:	3.0
Contact:	iss_storagedev@hp.com
Description:	Value of "simple" indicates that the controller has been placed
		in "simple mode". Value of "performant" indicates that the
		controller has been placed in "performant mode".
+2 −2
Original line number Diff line number Diff line
@@ -166,8 +166,8 @@ if (condition)
else
	do_that();

This does not apply if one branch of a conditional statement is a single
statement. Use braces in both branches.
This does not apply if only one branch of a conditional statement is a single
statement; in the latter case use braces in both branches:

if (condition) {
	do_this();
+168 −140

File changed.

Preview size limit exceeded, changes collapsed.

+3 −0
Original line number Diff line number Diff line
@@ -2486,6 +2486,9 @@ ioctls.</para>
        <listitem>
	  <para>Flash API. <xref linkend="flash-controls" /></para>
        </listitem>
        <listitem>
	  <para>&VIDIOC-CREATE-BUFS; and &VIDIOC-PREPARE-BUF; ioctls.</para>
        </listitem>
      </itemizedlist>
    </section>

Loading