Greg, Even though using copyleft-next was fine by Linus [0], AKASHI had brought that he expected to see an "or" clause on the license declarations when using copyleft-next. This was the only pending issue from the last v7 series [1]. To be safe I re-touched the subject and Alan and Ted brought up sufficient reasons for preferring the "or" language [2], as such this series goes with the "or" language embraced so that it is even clearer than before that GPLv2 applies when using copyleft-next on the Linux kernel.
This series depends on the few other UMH fallback lock changes I had submitted earlier this month [3], and those remain without any noted issues. As usual, all pending changes for this series are available on my linux-next tree on the 20170519-driver-data branch [4], this series was rebased on next-20170519. Please let me know if there are any issues or questions. [0] https://lkml.kernel.org/r/CA+55aFyhxcvD+q7tp+-yrSFDKfR0mOHgyEAe=f_94aklsou...@mail.gmail.com [1] https://lkml.kernel.org/r/[email protected] [2] https://lkml.kernel.org/r/CAB=ne6vnftr-or9ilft3lnbp4m35p0nfegxnprnawvbbaem...@mail.gmail.com [3] https://lkml.kernel.org/r/[email protected] [4] https://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux-next.git/log/?h=20170519-driver-data Luis R. Rodriguez (5): firmware: add extensible driver data params firmware: add extensible driver data API test: add new driver_data load tester firmware: document the extensible driver data API iwlwifi: convert to use driver data API Documentation/driver-api/firmware/driver_data.rst | 167 +++ Documentation/driver-api/firmware/index.rst | 1 + Documentation/driver-api/firmware/introduction.rst | 16 + .../driver-api/firmware/request_firmware.rst | 2 + MAINTAINERS | 4 +- drivers/base/firmware_class.c | 751 ++++++++++-- drivers/net/wireless/intel/iwlwifi/iwl-drv.c | 91 +- include/linux/driver_data.h | 266 ++++ include/linux/firmware.h | 2 + lib/Kconfig.debug | 12 + lib/Makefile | 1 + lib/test_driver_data.c | 1278 ++++++++++++++++++++ tools/testing/selftests/firmware/Makefile | 2 +- tools/testing/selftests/firmware/config | 1 + tools/testing/selftests/firmware/driver_data.sh | 1002 +++++++++++++++ 15 files changed, 3460 insertions(+), 136 deletions(-) create mode 100644 Documentation/driver-api/firmware/driver_data.rst create mode 100644 include/linux/driver_data.h create mode 100644 lib/test_driver_data.c create mode 100755 tools/testing/selftests/firmware/driver_data.sh -- 2.11.0

