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

Commit 50953e06 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab
Browse files

Merge branch 'poll' into staging/for_v3.4

* poll: (5970 commits)
  poll: add poll_requested_events() and poll_does_not_wait() functions
  crc32: select an algorithm via Kconfig
  crc32: add self-test code for crc32c
  crypto: crc32c should use library implementation
  crc32: bolt on crc32c
  crc32: add note about this patchset to crc32.c
  crc32: optimize loop counter for x86
  crc32: add slice-by-8 algorithm to existing code
  crc32: make CRC_*_BITS definition correspond to actual bit counts
  crc32: fix mixing of endian-specific types
  crc32: miscellaneous cleanups
  crc32: simplify unit test code
  crc32: move long comment about crc32 fundamentals to Documentation/
  crc32: remove two instances of trailing whitespaces
  checkpatch: check for quoted strings broken across lines
  checkpatch: whitespace - add/remove blank lines
  checkpatch: warn on use of yield()
  checkpatch: add --strict tests for braces, comments and casts
  checkpatch: add [] to type extensions
  checkpatch: high precedence operators do not require additional parentheses in #defines
  ...
parents f92c97c8 626cf236
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -7,8 +7,8 @@ Please try and keep the descriptions small enough to fit on one line.

Following translations are available on the WWW:

   - Japanese, maintained by the JF Project (JF@linux.or.jp), at
     http://www.linux.or.jp/JF/
   - Japanese, maintained by the JF Project (jf@listserv.linux.or.jp), at
     http://linuxjf.sourceforge.jp/

00-INDEX
	- this file.
@@ -104,6 +104,8 @@ cpuidle/
	- info on CPU_IDLE, CPU idle state management subsystem.
cputopology.txt
	- documentation on how CPU topology info is exported via sysfs.
crc32.txt
	- brief tutorial on CRC computation
cris/
	- directory with info about Linux on CRIS architecture.
crypto/
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@ Date: 09-Jul-2007
KernelVersion	v2.6.22
Contact:	linux-wireless@vger.kernel.org
Description: 	Current state of the transmitter.
		This file is deprecated and sheduled to be removed in 2014,
		This file is deprecated and scheduled to be removed in 2014,
		because its not possible to express the 'soft and hard block'
		state of the rfkill driver.
Values: 	A numeric value.
+1 −1
Original line number Diff line number Diff line
What:		devfs
Date:		July 2005 (scheduled), finally removed in kernel v2.6.18
Contact:	Greg Kroah-Hartman <gregkh@suse.de>
Contact:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Description:
	devfs has been unmaintained for a number of years, has unfixable
	races, contains a naming policy within the kernel that is
+5 −5
Original line number Diff line number Diff line
What:		/sys/bus/usb/drivers/usbtmc/devices/*/interface_capabilities
What:		/sys/bus/usb/drivers/usbtmc/devices/*/device_capabilities
Date:		August 2008
Contact:	Greg Kroah-Hartman <gregkh@suse.de>
Contact:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Description:
		These files show the various USB TMC capabilities as described
		by the device itself.  The full description of the bitfields
@@ -15,7 +15,7 @@ Description:
What:		/sys/bus/usb/drivers/usbtmc/devices/*/usb488_interface_capabilities
What:		/sys/bus/usb/drivers/usbtmc/devices/*/usb488_device_capabilities
Date:		August 2008
Contact:	Greg Kroah-Hartman <gregkh@suse.de>
Contact:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Description:
		These files show the various USB TMC capabilities as described
		by the device itself.  The full description of the bitfields
@@ -29,7 +29,7 @@ Description:

What:		/sys/bus/usb/drivers/usbtmc/devices/*/TermChar
Date:		August 2008
Contact:	Greg Kroah-Hartman <gregkh@suse.de>
Contact:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Description:
		This file is the TermChar value to be sent to the USB TMC
		device as described by the document, "Universal Serial Bus Test
@@ -42,7 +42,7 @@ Description:

What:		/sys/bus/usb/drivers/usbtmc/devices/*/TermCharEnabled
Date:		August 2008
Contact:	Greg Kroah-Hartman <gregkh@suse.de>
Contact:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Description:
		This file determines if the TermChar is to be sent to the
		device on every transaction or not.  For more details about
@@ -53,7 +53,7 @@ Description:

What:		/sys/bus/usb/drivers/usbtmc/devices/*/auto_abort
Date:		August 2008
Contact:	Greg Kroah-Hartman <gregkh@suse.de>
Contact:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Description:
		This file determines if the the transaction of the USB TMC
		device is to be automatically aborted if there is any error.
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@ Description:
		The name of the module that is in the kernel.  This
		module name will show up either if the module is built
		directly into the kernel, or if it is loaded as a
		dyanmic module.
		dynamic module.

	/sys/module/MODULENAME/parameters
		This directory contains individual files that are each
Loading