Message ID | 1501420993-21977-1-git-send-email-shawnguo@kernel.org |
---|---|
Headers | show |
Series | Add ZTE zx-irdec remote control driver | expand |
On Sun, Jul 30, 2017 at 09:23:10PM +0800, Shawn Guo wrote: > From: Shawn Guo <shawn.guo@linaro.org> > > The series adds dt-bindings and remote control driver for IRDEC block > found on ZTE ZX family SoCs. > > Changes for v2: > - Add one patch to move generic NEC scancode composing and protocol > type detection code from ir_nec_decode() into an inline shared > function, which can be reused by zx-irdec driver. > > Shawn Guo (3): > rc: ir-nec-decoder: move scancode composing code into a shared > function > dt-bindings: add bindings document for zx-irdec > rc: add zx-irdec remote control driver Hi Sean, We are getting close to 4.14 merge window. Can we get this into -next for a bit exposure, if you are fine with the patches? Shawn -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On Fri, Aug 18, 2017 at 08:54:20PM +0800, Shawn Guo wrote: > On Sun, Jul 30, 2017 at 09:23:10PM +0800, Shawn Guo wrote: > > From: Shawn Guo <shawn.guo@linaro.org> > > > > The series adds dt-bindings and remote control driver for IRDEC block > > found on ZTE ZX family SoCs. > > > > Changes for v2: > > - Add one patch to move generic NEC scancode composing and protocol > > type detection code from ir_nec_decode() into an inline shared > > function, which can be reused by zx-irdec driver. > > > > Shawn Guo (3): > > rc: ir-nec-decoder: move scancode composing code into a shared > > function > > dt-bindings: add bindings document for zx-irdec > > rc: add zx-irdec remote control driver > > Hi Sean, > > We are getting close to 4.14 merge window. Can we get this into -next > for a bit exposure, if you are fine with the patches? The rc pull requests have been merged into the media_tree, so they should now get exposure in linux-next. https://git.linuxtv.org/media_tree.git/ Thanks, Sean -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
From: Shawn Guo <shawn.guo@linaro.org> The series adds dt-bindings and remote control driver for IRDEC block found on ZTE ZX family SoCs. Changes for v2: - Add one patch to move generic NEC scancode composing and protocol type detection code from ir_nec_decode() into an inline shared function, which can be reused by zx-irdec driver. Shawn Guo (3): rc: ir-nec-decoder: move scancode composing code into a shared function dt-bindings: add bindings document for zx-irdec rc: add zx-irdec remote control driver .../devicetree/bindings/media/zx-irdec.txt | 14 ++ drivers/media/rc/Kconfig | 11 ++ drivers/media/rc/Makefile | 1 + drivers/media/rc/ir-nec-decoder.c | 32 +--- drivers/media/rc/keymaps/Makefile | 3 +- drivers/media/rc/keymaps/rc-zx-irdec.c | 79 +++++++++ drivers/media/rc/zx-irdec.c | 183 +++++++++++++++++++++ include/media/rc-core.h | 31 ++++ include/media/rc-map.h | 1 + 9 files changed, 325 insertions(+), 30 deletions(-) create mode 100644 Documentation/devicetree/bindings/media/zx-irdec.txt create mode 100644 drivers/media/rc/keymaps/rc-zx-irdec.c create mode 100644 drivers/media/rc/zx-irdec.c -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html