* [GIT PULL] move ARM LCD display driver to auxdisplay @ 2016-04-23 9:43 Linus Walleij 2016-04-25 11:57 ` Maxime Ripard 0 siblings, 1 reply; 16+ messages in thread From: Linus Walleij @ 2016-04-23 9:43 UTC (permalink / raw) To: linux-arm-kernel Hi ARM SoC guys, these two patches move the ARM character LCD driver from misc drivers to the auxdisplay subsystem where it belongs and updates the defconfig for the RealView accordingly. Please pull it into some cleanup branch in the ARM SoC tree. I tried to get some ACK from the auxdisplay maintainer but no reaction. Yours, Linus Walleij The following changes since commit bf16200689118d19de1b8d2a3c314fc21f5dc7bb: Linux 4.6-rc3 (2016-04-10 17:58:30 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-integrator.git tags/move-auxdisplay for you to fetch changes up to 700ce70081d4f5ac7bc4fbfba209072152f96c89: ARM: realview: update defconfig to match new subsystem (2016-04-23 11:38:25 +0200) ---------------------------------------------------------------- This moves the ARM RealView auxilary display out of the misc drivers and into the new auxdisplay subsystem. ---------------------------------------------------------------- Linus Walleij (2): auxdisplay: move the ARM LCD driver into auxdisplay ARM: realview: update defconfig to match new subsystem arch/arm/configs/realview_defconfig | 3 ++- drivers/auxdisplay/Kconfig | 10 ++++++++++ drivers/auxdisplay/Makefile | 1 + drivers/{misc => auxdisplay}/arm-charlcd.c | 0 drivers/misc/Kconfig | 10 ---------- drivers/misc/Makefile | 1 - 6 files changed, 13 insertions(+), 12 deletions(-) rename drivers/{misc => auxdisplay}/arm-charlcd.c (100%) ^ permalink raw reply [flat|nested] 16+ messages in thread
* [GIT PULL] move ARM LCD display driver to auxdisplay 2016-04-23 9:43 [GIT PULL] move ARM LCD display driver to auxdisplay Linus Walleij @ 2016-04-25 11:57 ` Maxime Ripard 2016-04-25 22:18 ` Arnd Bergmann 2016-04-26 10:41 ` Linus Walleij 0 siblings, 2 replies; 16+ messages in thread From: Maxime Ripard @ 2016-04-25 11:57 UTC (permalink / raw) To: linux-arm-kernel Hi, On Sat, Apr 23, 2016 at 11:43:58AM +0200, Linus Walleij wrote: > Hi ARM SoC guys, > > these two patches move the ARM character LCD driver from > misc drivers to the auxdisplay subsystem where it belongs and > updates the defconfig for the RealView accordingly. > > Please pull it into some cleanup branch in the ARM SoC > tree. > > I tried to get some ACK from the auxdisplay maintainer but no > reaction. Auxdisplay is not a new framework, but rather a very old one. It got introduced in 2.6.21, and only received a couple of drivers since. It seems to be quite redundant with fbdev deferred_io, which itself is almost deprecated these days. Maxime -- Maxime Ripard, Free Electrons Embedded Linux, Kernel and Android engineering http://free-electrons.com -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: Digital signature URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20160425/23188532/attachment.sig> ^ permalink raw reply [flat|nested] 16+ messages in thread
* [GIT PULL] move ARM LCD display driver to auxdisplay 2016-04-25 11:57 ` Maxime Ripard @ 2016-04-25 22:18 ` Arnd Bergmann 2016-04-26 10:41 ` Linus Walleij 1 sibling, 0 replies; 16+ messages in thread From: Arnd Bergmann @ 2016-04-25 22:18 UTC (permalink / raw) To: linux-arm-kernel On Monday 25 April 2016 13:57:58 Maxime Ripard wrote: > Hi, > > On Sat, Apr 23, 2016 at 11:43:58AM +0200, Linus Walleij wrote: > > Hi ARM SoC guys, > > > > these two patches move the ARM character LCD driver from > > misc drivers to the auxdisplay subsystem where it belongs and > > updates the defconfig for the RealView accordingly. > > > > Please pull it into some cleanup branch in the ARM SoC > > tree. > > > > I tried to get some ACK from the auxdisplay maintainer but no > > reaction. > > Auxdisplay is not a new framework, but rather a very old one. > > It got introduced in 2.6.21, and only received a couple of drivers > since. > > It seems to be quite redundant with fbdev deferred_io, which itself is > almost deprecated these days. I'm holding off on this pull request for now then. I'd certainly like to see the driver get moved out of drivers/misc, let me know once there has been an agreement of where it should go. Arnd ^ permalink raw reply [flat|nested] 16+ messages in thread
* [GIT PULL] move ARM LCD display driver to auxdisplay 2016-04-25 11:57 ` Maxime Ripard 2016-04-25 22:18 ` Arnd Bergmann @ 2016-04-26 10:41 ` Linus Walleij 2016-04-28 9:26 ` Maxime Ripard 1 sibling, 1 reply; 16+ messages in thread From: Linus Walleij @ 2016-04-26 10:41 UTC (permalink / raw) To: linux-arm-kernel On Mon, Apr 25, 2016 at 1:57 PM, Maxime Ripard <maxime.ripard@free-electrons.com> wrote: > On Sat, Apr 23, 2016 at 11:43:58AM +0200, Linus Walleij wrote: >> Hi ARM SoC guys, >> >> these two patches move the ARM character LCD driver from >> misc drivers to the auxdisplay subsystem where it belongs and >> updates the defconfig for the RealView accordingly. >> >> Please pull it into some cleanup branch in the ARM SoC >> tree. >> >> I tried to get some ACK from the auxdisplay maintainer but no >> reaction. > > Auxdisplay is not a new framework, but rather a very old one. > > It got introduced in 2.6.21, and only received a couple of drivers > since. Small problem for me, but Robin is submitting a brand new auxdisplay driver: http://marc.info/?l=linux-kernel&m=146001950512999&w=2 http://marc.info/?l=linux-kernel&m=146001988013230&w=2 > It seems to be quite redundant with fbdev deferred_io, which itself is > almost deprecated these days. That is a valid argument for moving cfag12864b* out to drivers/video/* I guess, but it has nothing to do with this driver whatsoever. This driver has nothing to do with fbdev. Nothing at all. It so not connected to any framebuffer. This driver gets moved to auxdisplay to match the existing LCD driver in drivers/auxdisplay/ks0108.c which is a similar hardware, driving an LCD that likewise has nothing to do with fbdev. Yours, Linus Walleij ^ permalink raw reply [flat|nested] 16+ messages in thread
* [GIT PULL] move ARM LCD display driver to auxdisplay 2016-04-26 10:41 ` Linus Walleij @ 2016-04-28 9:26 ` Maxime Ripard 2016-04-29 7:49 ` Linus Walleij 2016-04-29 14:53 ` Tomi Valkeinen 0 siblings, 2 replies; 16+ messages in thread From: Maxime Ripard @ 2016-04-28 9:26 UTC (permalink / raw) To: linux-arm-kernel On Tue, Apr 26, 2016 at 12:41:29PM +0200, Linus Walleij wrote: > On Mon, Apr 25, 2016 at 1:57 PM, Maxime Ripard > <maxime.ripard@free-electrons.com> wrote: > > On Sat, Apr 23, 2016 at 11:43:58AM +0200, Linus Walleij wrote: > >> Hi ARM SoC guys, > >> > >> these two patches move the ARM character LCD driver from > >> misc drivers to the auxdisplay subsystem where it belongs and > >> updates the defconfig for the RealView accordingly. > >> > >> Please pull it into some cleanup branch in the ARM SoC > >> tree. > >> > >> I tried to get some ACK from the auxdisplay maintainer but no > >> reaction. > > > > Auxdisplay is not a new framework, but rather a very old one. > > > > It got introduced in 2.6.21, and only received a couple of drivers > > since. > > Small problem for me, but Robin is submitting a brand new > auxdisplay driver: > http://marc.info/?l=linux-kernel&m=146001950512999&w=2 > http://marc.info/?l=linux-kernel&m=146001988013230&w=2 My understanding is that Tomi doesn't want any new fbdev drivers, so I'm not sure this is the right place for those patches. > > It seems to be quite redundant with fbdev deferred_io, which itself is > > almost deprecated these days. > > That is a valid argument for moving cfag12864b* out to > drivers/video/* I guess, but it has nothing to do with this > driver whatsoever. > > This driver has nothing to do with fbdev. Nothing at all. > It so not connected to any framebuffer. > > This driver gets moved to auxdisplay to match the existing > LCD driver in drivers/auxdisplay/ks0108.c which is a similar > hardware, driving an LCD that likewise has nothing to do > with fbdev. My bad, I thought all auxdisplay drivers were fbdev ones, but I was wrong, obviously. And now, I don't really know what auxdisplay is about anymore :) Still, moving it to a "framework" that has been inactive for so long (and you even mention it in your PR) doesn't seem like the right move. Maxime -- Maxime Ripard, Free Electrons Embedded Linux, Kernel and Android engineering http://free-electrons.com -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: not available URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20160428/c92d6bec/attachment.sig> ^ permalink raw reply [flat|nested] 16+ messages in thread
* [GIT PULL] move ARM LCD display driver to auxdisplay 2016-04-28 9:26 ` Maxime Ripard @ 2016-04-29 7:49 ` Linus Walleij 2016-04-29 14:53 ` Tomi Valkeinen 1 sibling, 0 replies; 16+ messages in thread From: Linus Walleij @ 2016-04-29 7:49 UTC (permalink / raw) To: linux-arm-kernel On Thu, Apr 28, 2016 at 11:26 AM, Maxime Ripard <maxime.ripard@free-electrons.com> wrote: > Still, moving it to a "framework" that has been inactive for so long > (and you even mention it in your PR) doesn't seem like the right move. I still think sorting the driver into the right bucket has a value. When/if the Linux LCD support gets an upstream push they will know where to put their stuff: here, and then common stuff can be abstracted. With drivers floating around in misc the situation is even worse. http://lcd-linux.sourceforge.net/ Yours, Linus Walleij ^ permalink raw reply [flat|nested] 16+ messages in thread
* [GIT PULL] move ARM LCD display driver to auxdisplay 2016-04-28 9:26 ` Maxime Ripard 2016-04-29 7:49 ` Linus Walleij @ 2016-04-29 14:53 ` Tomi Valkeinen 2016-05-09 7:06 ` Robin van der Gracht 1 sibling, 1 reply; 16+ messages in thread From: Tomi Valkeinen @ 2016-04-29 14:53 UTC (permalink / raw) To: linux-arm-kernel On 28/04/16 12:26, Maxime Ripard wrote: > On Tue, Apr 26, 2016 at 12:41:29PM +0200, Linus Walleij wrote: >> On Mon, Apr 25, 2016 at 1:57 PM, Maxime Ripard >> <maxime.ripard@free-electrons.com> wrote: >>> On Sat, Apr 23, 2016 at 11:43:58AM +0200, Linus Walleij wrote: >>>> Hi ARM SoC guys, >>>> >>>> these two patches move the ARM character LCD driver from >>>> misc drivers to the auxdisplay subsystem where it belongs and >>>> updates the defconfig for the RealView accordingly. >>>> >>>> Please pull it into some cleanup branch in the ARM SoC >>>> tree. >>>> >>>> I tried to get some ACK from the auxdisplay maintainer but no >>>> reaction. >>> >>> Auxdisplay is not a new framework, but rather a very old one. >>> >>> It got introduced in 2.6.21, and only received a couple of drivers >>> since. >> >> Small problem for me, but Robin is submitting a brand new >> auxdisplay driver: >> http://marc.info/?l=linux-kernel&m=146001950512999&w=2 >> http://marc.info/?l=linux-kernel&m=146001988013230&w=2 > > My understanding is that Tomi doesn't want any new fbdev drivers, so > I'm not sure this is the right place for those patches. Hmm, that one looks like an fbdev driver, not an auxdisplay driver. But, not relevant for this patch, of course. >>> It seems to be quite redundant with fbdev deferred_io, which itself is >>> almost deprecated these days. >> >> That is a valid argument for moving cfag12864b* out to >> drivers/video/* I guess, but it has nothing to do with this >> driver whatsoever. >> >> This driver has nothing to do with fbdev. Nothing at all. >> It so not connected to any framebuffer. >> >> This driver gets moved to auxdisplay to match the existing >> LCD driver in drivers/auxdisplay/ks0108.c which is a similar >> hardware, driving an LCD that likewise has nothing to do >> with fbdev. > > My bad, I thought all auxdisplay drivers were fbdev ones, but I was > wrong, obviously. And now, I don't really know what auxdisplay is > about anymore :) > > Still, moving it to a "framework" that has been inactive for so long > (and you even mention it in your PR) doesn't seem like the right move. I think this move makes sense. It's only moving a file to a directory that at least mentions "display", not really moving it into a framework (because there doesn't seem to be any). Tomi -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: OpenPGP digital signature URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20160429/33de00d9/attachment-0001.sig> ^ permalink raw reply [flat|nested] 16+ messages in thread
* [GIT PULL] move ARM LCD display driver to auxdisplay 2016-04-29 14:53 ` Tomi Valkeinen @ 2016-05-09 7:06 ` Robin van der Gracht 2016-05-09 13:19 ` Linus Walleij 0 siblings, 1 reply; 16+ messages in thread From: Robin van der Gracht @ 2016-05-09 7:06 UTC (permalink / raw) To: linux-arm-kernel On Fri, 29 Apr 2016 17:53:17 +0300 Tomi Valkeinen <tomi.valkeinen@ti.com> wrote: [...] > >> > >> Small problem for me, but Robin is submitting a brand new > >> auxdisplay driver: > >> http://marc.info/?l=linux-kernel&m=146001950512999&w=2 > >> http://marc.info/?l=linux-kernel&m=146001988013230&w=2 > > > > My understanding is that Tomi doesn't want any new fbdev drivers, so > > I'm not sure this is the right place for those patches. > > Hmm, that one looks like an fbdev driver, not an auxdisplay driver. > But, not relevant for this patch, of course. If you guys feel like auxdisplay is not the right subsystem for the driver, and would like me to move it, please share. Regards, Robin van der Gracht ^ permalink raw reply [flat|nested] 16+ messages in thread
* [GIT PULL] move ARM LCD display driver to auxdisplay 2016-05-09 7:06 ` Robin van der Gracht @ 2016-05-09 13:19 ` Linus Walleij 2016-05-09 14:17 ` Robin van der Gracht 0 siblings, 1 reply; 16+ messages in thread From: Linus Walleij @ 2016-05-09 13:19 UTC (permalink / raw) To: linux-arm-kernel On Mon, May 9, 2016 at 9:06 AM, Robin van der Gracht <robin@protonic.nl> wrote: > If you guys feel like auxdisplay is not the right subsystem for the > driver, and would like me to move it, please share. The best would be if you volunteer to maintain it and bring it forward. Yours, Linus Walleij ^ permalink raw reply [flat|nested] 16+ messages in thread
* [GIT PULL] move ARM LCD display driver to auxdisplay 2016-05-09 13:19 ` Linus Walleij @ 2016-05-09 14:17 ` Robin van der Gracht 2016-05-09 14:27 ` Linus Walleij 0 siblings, 1 reply; 16+ messages in thread From: Robin van der Gracht @ 2016-05-09 14:17 UTC (permalink / raw) To: linux-arm-kernel On Mon, 9 May 2016 15:19:26 +0200 Linus Walleij <linus.walleij@linaro.org> wrote: > On Mon, May 9, 2016 at 9:06 AM, Robin van der Gracht > <robin@protonic.nl> wrote: > > > If you guys feel like auxdisplay is not the right subsystem for the > > driver, and would like me to move it, please share. > > The best would be if you volunteer to maintain it and bring > it forward. Thats fine. Would it suffice if I submit another patch adding myself to the maintainers file? Regards, Robin ^ permalink raw reply [flat|nested] 16+ messages in thread
* [GIT PULL] move ARM LCD display driver to auxdisplay 2016-05-09 14:17 ` Robin van der Gracht @ 2016-05-09 14:27 ` Linus Walleij 2016-05-10 7:10 ` Greg KH 2016-05-12 10:25 ` Robin van der Gracht 0 siblings, 2 replies; 16+ messages in thread From: Linus Walleij @ 2016-05-09 14:27 UTC (permalink / raw) To: linux-arm-kernel On Mon, May 9, 2016 at 4:17 PM, Robin van der Gracht <robin@protonic.nl> wrote: > On Mon, 9 May 2016 15:19:26 +0200 > Linus Walleij <linus.walleij@linaro.org> wrote: > >> On Mon, May 9, 2016 at 9:06 AM, Robin van der Gracht >> <robin@protonic.nl> wrote: >> >> > If you guys feel like auxdisplay is not the right subsystem for the >> > driver, and would like me to move it, please share. >> >> The best would be if you volunteer to maintain it and bring >> it forward. > > Thats fine. Would it suffice if I submit another patch adding myself > to the maintainers file? That's half of it, if Miguel does not come back then his name should be removed as the second step. You also need to have an idea on a path to funnel accumulated patches upstream to Torvalds. The recent patches to this subsystem were funneled by Greg, so we should ask him how he prefer to proceed. Greg, what do you prefer? Yours, Linus Walleij ^ permalink raw reply [flat|nested] 16+ messages in thread
* [GIT PULL] move ARM LCD display driver to auxdisplay 2016-05-09 14:27 ` Linus Walleij @ 2016-05-10 7:10 ` Greg KH 2016-05-11 7:46 ` Robin van der Gracht 2016-05-12 10:25 ` Robin van der Gracht 1 sibling, 1 reply; 16+ messages in thread From: Greg KH @ 2016-05-10 7:10 UTC (permalink / raw) To: linux-arm-kernel On Mon, May 09, 2016 at 04:27:00PM +0200, Linus Walleij wrote: > On Mon, May 9, 2016 at 4:17 PM, Robin van der Gracht <robin@protonic.nl> wrote: > > On Mon, 9 May 2016 15:19:26 +0200 > > Linus Walleij <linus.walleij@linaro.org> wrote: > > > >> On Mon, May 9, 2016 at 9:06 AM, Robin van der Gracht > >> <robin@protonic.nl> wrote: > >> > >> > If you guys feel like auxdisplay is not the right subsystem for the > >> > driver, and would like me to move it, please share. > >> > >> The best would be if you volunteer to maintain it and bring > >> it forward. > > > > Thats fine. Would it suffice if I submit another patch adding myself > > to the maintainers file? > > That's half of it, if Miguel does not come back then his name > should be removed as the second step. > > You also need to have an idea on a path to funnel accumulated > patches upstream to Torvalds. The recent patches to this > subsystem were funneled by Greg, so we should ask him how > he prefer to proceed. > > Greg, what do you prefer? I don't care :) I can keep doing this, sending stuff to Linus through my char/misc tree, or it can go through someone else's tree, it doesn't bother me... thanks, greg k-h ^ permalink raw reply [flat|nested] 16+ messages in thread
* [GIT PULL] move ARM LCD display driver to auxdisplay 2016-05-10 7:10 ` Greg KH @ 2016-05-11 7:46 ` Robin van der Gracht 2016-05-11 8:34 ` Greg KH 0 siblings, 1 reply; 16+ messages in thread From: Robin van der Gracht @ 2016-05-11 7:46 UTC (permalink / raw) To: linux-arm-kernel On Tue, 10 May 2016 09:10:04 +0200 Greg KH <gregkh@linuxfoundation.org> wrote: > On Mon, May 09, 2016 at 04:27:00PM +0200, Linus Walleij wrote: > > On Mon, May 9, 2016 at 4:17 PM, Robin van der Gracht > > <robin@protonic.nl> wrote: > > > On Mon, 9 May 2016 15:19:26 +0200 > > > Linus Walleij <linus.walleij@linaro.org> wrote: > > > > > >> On Mon, May 9, 2016 at 9:06 AM, Robin van der Gracht > > >> <robin@protonic.nl> wrote: > > >> > > >> > If you guys feel like auxdisplay is not the right subsystem > > >> > for the driver, and would like me to move it, please share. > > >> > > >> The best would be if you volunteer to maintain it and bring > > >> it forward. > > > > > > Thats fine. Would it suffice if I submit another patch adding > > > myself to the maintainers file? > > > > That's half of it, if Miguel does not come back then his name > > should be removed as the second step. > > > > You also need to have an idea on a path to funnel accumulated > > patches upstream to Torvalds. The recent patches to this > > subsystem were funneled by Greg, so we should ask him how > > he prefer to proceed. > > > > Greg, what do you prefer? > > I don't care :) > > I can keep doing this, sending stuff to Linus through my char/misc > tree, or it can go through someone else's tree, it doesn't bother > me... Soo.. You're allowing me to send patches to you so you can funnel them through your channel (for now)? Kind regards, Robin ^ permalink raw reply [flat|nested] 16+ messages in thread
* [GIT PULL] move ARM LCD display driver to auxdisplay 2016-05-11 7:46 ` Robin van der Gracht @ 2016-05-11 8:34 ` Greg KH 0 siblings, 0 replies; 16+ messages in thread From: Greg KH @ 2016-05-11 8:34 UTC (permalink / raw) To: linux-arm-kernel On Wed, May 11, 2016 at 09:46:35AM +0200, Robin van der Gracht wrote: > On Tue, 10 May 2016 09:10:04 +0200 > Greg KH <gregkh@linuxfoundation.org> wrote: > > > On Mon, May 09, 2016 at 04:27:00PM +0200, Linus Walleij wrote: > > > On Mon, May 9, 2016 at 4:17 PM, Robin van der Gracht > > > <robin@protonic.nl> wrote: > > > > On Mon, 9 May 2016 15:19:26 +0200 > > > > Linus Walleij <linus.walleij@linaro.org> wrote: > > > > > > > >> On Mon, May 9, 2016 at 9:06 AM, Robin van der Gracht > > > >> <robin@protonic.nl> wrote: > > > >> > > > >> > If you guys feel like auxdisplay is not the right subsystem > > > >> > for the driver, and would like me to move it, please share. > > > >> > > > >> The best would be if you volunteer to maintain it and bring > > > >> it forward. > > > > > > > > Thats fine. Would it suffice if I submit another patch adding > > > > myself to the maintainers file? > > > > > > That's half of it, if Miguel does not come back then his name > > > should be removed as the second step. > > > > > > You also need to have an idea on a path to funnel accumulated > > > patches upstream to Torvalds. The recent patches to this > > > subsystem were funneled by Greg, so we should ask him how > > > he prefer to proceed. > > > > > > Greg, what do you prefer? > > > > I don't care :) > > > > I can keep doing this, sending stuff to Linus through my char/misc > > tree, or it can go through someone else's tree, it doesn't bother > > me... > > Soo.. You're allowing me to send patches to you so you can funnel > them through your channel (for now)? Sure, I'd be glad to do so if that makes your life easier. Either way it's no real extra or less overall workload for me :) thanks, greg k-h ^ permalink raw reply [flat|nested] 16+ messages in thread
* [GIT PULL] move ARM LCD display driver to auxdisplay 2016-05-09 14:27 ` Linus Walleij 2016-05-10 7:10 ` Greg KH @ 2016-05-12 10:25 ` Robin van der Gracht 2016-05-18 14:35 ` Linus Walleij 1 sibling, 1 reply; 16+ messages in thread From: Robin van der Gracht @ 2016-05-12 10:25 UTC (permalink / raw) To: linux-arm-kernel On Mon, 9 May 2016 16:27:00 +0200 Linus Walleij <linus.walleij@linaro.org> wrote: > On Mon, May 9, 2016 at 4:17 PM, Robin van der Gracht > <robin@protonic.nl> wrote: > > On Mon, 9 May 2016 15:19:26 +0200 > > Linus Walleij <linus.walleij@linaro.org> wrote: > > > >> On Mon, May 9, 2016 at 9:06 AM, Robin van der Gracht > >> <robin@protonic.nl> wrote: > >> > >> > If you guys feel like auxdisplay is not the right subsystem for > >> > the driver, and would like me to move it, please share. > >> > >> The best would be if you volunteer to maintain it and bring > >> it forward. > > > > Thats fine. Would it suffice if I submit another patch adding myself > > to the maintainers file? > > That's half of it, if Miguel does not come back then his name > should be removed as the second step. > First half is completed. I've added myself as maintainer for the driver I've posted recently (HT16K33 LED CONTROLLER DRIVER). According to MAINTAINERS, Miguel maintains: - CFAG12864B LCD DRIVER - CFAG12864BFB LCD FRAMEBUFFER DRIVER - KS0108 LCD CONTROLLER DRIVER - AUXILIARY DISPLAY DRIVERS AFAIK, I should not be judge in Miguels case. @linus: I'll send my patches to Greg if you agree on this. Kind regards, Robin van der Gracht ^ permalink raw reply [flat|nested] 16+ messages in thread
* [GIT PULL] move ARM LCD display driver to auxdisplay 2016-05-12 10:25 ` Robin van der Gracht @ 2016-05-18 14:35 ` Linus Walleij 0 siblings, 0 replies; 16+ messages in thread From: Linus Walleij @ 2016-05-18 14:35 UTC (permalink / raw) To: linux-arm-kernel On Thu, May 12, 2016 at 12:25 PM, Robin van der Gracht <robin@protonic.nl> wrote: > First half is completed. I've added myself as maintainer for the > driver I've posted recently (HT16K33 LED CONTROLLER DRIVER). Good! > According to MAINTAINERS, Miguel maintains: > - CFAG12864B LCD DRIVER > - CFAG12864BFB LCD FRAMEBUFFER DRIVER > - KS0108 LCD CONTROLLER DRIVER > - AUXILIARY DISPLAY DRIVERS > > AFAIK, I should not be judge in Miguels case. If patches come in for these drivers and Miguel still seem to be fallen off the face of the earth I think you should ACK/merge patches for these too, but deal with it when it happens. > @linus: I'll send my patches to Greg if you agree on this. We are in agreement. Yours, Linus Walleij ^ permalink raw reply [flat|nested] 16+ messages in thread
end of thread, other threads:[~2016-05-18 14:35 UTC | newest] Thread overview: 16+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2016-04-23 9:43 [GIT PULL] move ARM LCD display driver to auxdisplay Linus Walleij 2016-04-25 11:57 ` Maxime Ripard 2016-04-25 22:18 ` Arnd Bergmann 2016-04-26 10:41 ` Linus Walleij 2016-04-28 9:26 ` Maxime Ripard 2016-04-29 7:49 ` Linus Walleij 2016-04-29 14:53 ` Tomi Valkeinen 2016-05-09 7:06 ` Robin van der Gracht 2016-05-09 13:19 ` Linus Walleij 2016-05-09 14:17 ` Robin van der Gracht 2016-05-09 14:27 ` Linus Walleij 2016-05-10 7:10 ` Greg KH 2016-05-11 7:46 ` Robin van der Gracht 2016-05-11 8:34 ` Greg KH 2016-05-12 10:25 ` Robin van der Gracht 2016-05-18 14:35 ` Linus Walleij
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).