* [GIT PULL] auxdisplay for v4.17-rc1
@ 2018-04-12 18:37 Miguel Ojeda
2018-04-13 22:50 ` Linus Torvalds
0 siblings, 1 reply; 3+ messages in thread
From: Miguel Ojeda @ 2018-04-12 18:37 UTC (permalink / raw)
To: Linus Torvalds
Cc: Corentin Labbe, Gustavo A. R. Silva, Randy Dunlap, Robert Abel,
Sean Young, Ulf Magnusson, Miguel Ojeda, linux-kernel
Hi Linus,
Please pull these fixes and cleanups for auxdisplay.
They are recently rebased -- I am not on my main computer.
Cheers,
Miguel Ojeda
The following changes since commit 0adb32858b0bddf4ada5f364a84ed60b196dbcda:
Linux 4.16 (2018-04-01 14:20:27 -0700)
are available in the git repository at:
https://github.com/ojeda/linux.git tags/auxdisplay-for-linus-v4.17-rc1
for you to fetch changes up to 351f683b9823a3d1bffb6e2e3f381601aa0b2671:
auxdisplay: Replace licenses with SPDX identifiers (2018-04-12 19:02:45 +0200)
----------------------------------------------------------------
Mostly small fixes and cleanups, plus a non-trivial fix for charlcd
- charlcd: fixes and cleanups
From Robert Abel and Sean Young
- Kconfig fixes
From Randy Dunlap, Corentin Labbe and Ulf Magnusson
- cfag12864bfb: const cleanup
From Gustavo A. R. Silva
- Docs/licenses/warnings cleanups
----------------------------------------------------------------
Corentin Labbe (1):
auxdisplay: img-ascii-lcd: fix typo on select SYSCON/MFD_SYSCON
Gustavo A. R. Silva (1):
auxdisplay: cfag12864bfb: constify fb_fix_screeninfo and fb_var_screeninfo structures
Miguel Ojeda (5):
Doc: misc-devices: move lcd-panel-cgram.txt to auxdisplay/
MAINTAINERS: auxdisplay: remove obsolete webpages
auxdisplay: arm-charlcd: Fix struct charlcd doc line
auxdisplay: charlcd: Fix and clean up handling of x/y commands
auxdisplay: Replace licenses with SPDX identifiers
Randy Dunlap (2):
auxdisplay: fix broken menu
auxdisplay: make PANEL a menuconfig
Robert Abel (4):
auxdisplay: charlcd: use null character instead of zero literal to terminate strings
auxdisplay: charlcd: replace octal literal with form-feed escape sequence
auxdisplay: charlcd: fix two-line command ^[[LN not marked as processed
auxdisplay: charlcd: fix hex literal ranges for graphics command
Sean Young (1):
auxdisplay: charlcd: no need to call charlcd_gotoxy() if nothing changes
Ulf Magnusson (1):
auxdisplay: img-ascii-lcd: kconfig: Remove MIPS_SEAD3 reference
.../lcd-panel-cgram.txt | 0
MAINTAINERS | 8 --
drivers/auxdisplay/Kconfig | 16 +--
drivers/auxdisplay/arm-charlcd.c | 4 +-
drivers/auxdisplay/cfag12864b.c | 16 +--
drivers/auxdisplay/cfag12864bfb.c | 20 +---
drivers/auxdisplay/charlcd.c | 119 +++++++++++++++------
drivers/auxdisplay/hd44780.c | 6 +-
drivers/auxdisplay/ht16k33.c | 10 +-
drivers/auxdisplay/ks0108.c | 16 +--
drivers/auxdisplay/panel.c | 6 +-
include/linux/cfag12864b.h | 16 +--
include/linux/ks0108.h | 16 +--
samples/auxdisplay/cfag12864b-example.c | 16 +--
14 files changed, 111 insertions(+), 158 deletions(-)
rename Documentation/{misc-devices => auxdisplay}/lcd-panel-cgram.txt (100%)
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [GIT PULL] auxdisplay for v4.17-rc1
2018-04-12 18:37 [GIT PULL] auxdisplay for v4.17-rc1 Miguel Ojeda
@ 2018-04-13 22:50 ` Linus Torvalds
2018-04-15 13:39 ` Miguel Ojeda
0 siblings, 1 reply; 3+ messages in thread
From: Linus Torvalds @ 2018-04-13 22:50 UTC (permalink / raw)
To: Miguel Ojeda
Cc: Corentin Labbe, Gustavo A. R. Silva, Randy Dunlap, Robert Abel,
Sean Young, Ulf Magnusson, linux-kernel
On Thu, Apr 12, 2018 at 11:37 AM, Miguel Ojeda
<miguel.ojeda.sandonis@gmail.com> wrote:
>
> Please pull these fixes and cleanups for auxdisplay.
As far as I can tell, none of this has been in linux-next.
By the end of the merge window, I styart getting a whole lot more anal
about what I pull. In particular, if people send me pull requests
late, I had better get the warm fuzzy feeling of "at least it's been
tested in linux-next".
These may be recently rebased, but there isn't even anything
*non-rebased* in linux-next as of the beginning of this week.
Linus
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [GIT PULL] auxdisplay for v4.17-rc1
2018-04-13 22:50 ` Linus Torvalds
@ 2018-04-15 13:39 ` Miguel Ojeda
0 siblings, 0 replies; 3+ messages in thread
From: Miguel Ojeda @ 2018-04-15 13:39 UTC (permalink / raw)
To: Linus Torvalds
Cc: Corentin Labbe, Gustavo A. R. Silva, Randy Dunlap, Robert Abel,
Sean Young, Ulf Magnusson, linux-kernel
On Sat, Apr 14, 2018 at 12:50 AM, Linus Torvalds
<torvalds@linux-foundation.org> wrote:
> On Thu, Apr 12, 2018 at 11:37 AM, Miguel Ojeda
> <miguel.ojeda.sandonis@gmail.com> wrote:
>>
>> Please pull these fixes and cleanups for auxdisplay.
>
> As far as I can tell, none of this has been in linux-next.
>
> By the end of the merge window, I styart getting a whole lot more anal
> about what I pull. In particular, if people send me pull requests
> late, I had better get the warm fuzzy feeling of "at least it's been
> tested in linux-next".
Yeah, no worries -- I was late, so I suspected as much :-)
Do you prefer I re-send it for -rc2, send it to linux-next, wait for
4.18 or just wait until you pull at some point?
Thanks,
Miguel
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-04-15 13:40 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-04-12 18:37 [GIT PULL] auxdisplay for v4.17-rc1 Miguel Ojeda
2018-04-13 22:50 ` Linus Torvalds
2018-04-15 13:39 ` Miguel Ojeda
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®