From: Tomi Valkeinen <tomi.valkeinen@ti.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: LKML <linux-kernel@vger.kernel.org>,
Linux Fbdev development list <linux-fbdev@vger.kernel.org>
Subject: [GIT PULL] fbdev changes for 3.18
Date: Wed, 15 Oct 2014 11:23:02 +0000 [thread overview]
Message-ID: <543E5916.1020900@ti.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 5546 bytes --]
Hi Linus,
Please pull the fbdev changes for 3.18.
Tomi
The following changes since commit 52addcf9d6669fa439387610bc65c92fa0980cef:
Linux 3.17-rc2 (2014-08-25 15:36:20 -0700)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/tomba/linux.git tags/fbdev-3.18
for you to fetch changes up to 33ac9dba859b07d40e9ec826057d20c857fdede5:
fonts: Add 6x10 font (2014-10-09 11:35:48 +0300)
----------------------------------------------------------------
fbdev changes for 3.18
* new 6x10 font
* various small fixes and cleanups
----------------------------------------------------------------
Alexander Stein (1):
video/atmel_lcdfb: Introduce regulator support
Andy Shevchenko (1):
video: fbdev: use %*ph specifier to dump small buffers
Arnd Bergmann (1):
video: mx3fb: always enable BACKLIGHT_LCD_SUPPORT
Behan Webster (2):
arm, fbdev, omap2, LLVMLinux: Remove nested function from omap2 dss
arm, fbdev, omap2, LLVMLinux: Remove nested function from omapfb
Fabian Frederick (7):
video: vermilion: remove unnecessary break after goto
video: fbdev: stifb.c: use container_of to resolve stifb_info from fb_info
video: fbdev: sa1100fb.c: use container_of to resolve sa1100fb_info from fb_info
video: fbdev: controlfb.c: use container_of to resolve fb_info_control from fb_info
video: fbdev: cyber2000fb.c: use container_of to resolve cfb_info from fb_info
video: fbdev: pxafb.c: use container_of to resolve pxafb_info/layer from fb_info
video: fbdev: valkyriefb.c: use container_of to resolve fb_info_valkyrie from fb_info
Geert Uytterhoeven (3):
video: mx3fb: Update comment for dmaengine_prep_slave_sg() API
video: valkyriefb: Fix unused variable warning in set_valkyrie_clock()
fbdev: sh_mobile_hdmi: Re-init regs before irq re-enable on resume
Julia Lawall (8):
video: of: display_timing: delete unneeded test before of_node_put
video: fbdev: matrox: use c99 initializers in structures
OMAPDSS: DSI: use c99 initializers in structures
video: fbdev: aty: use c99 initializers in structures
video: fbdev: riva: delete double assignment
video: fbdev: intelfb: delete double assignment
video: fbdev: sis: delete double assignment
video: fbdev: au1200fb: delete double assignment
Maarten ter Huurne (1):
fonts: Add 6x10 font
Mikulas Patocka (2):
framebuffer: fix border color
framebuffer: fix screen corruption when copying
Pramod Gurav (2):
msm: msm_fb: Add remove function for platform driver for clean unloading
msm: msm_fb: Move to using managed resources of kzalloc
Rickard Strandqvist (1):
video: fbdev: sis: sis_main.c: Cleaning up missing null-terminate in conjunction with strncpy
Tomi Valkeinen (1):
videomode: provide dummy inline functions for !CONFIG_OF
.../devicetree/bindings/video/atmel,lcdc.txt | 3 +
drivers/video/console/bitblit.c | 3 +-
drivers/video/console/fbcon_ccw.c | 3 +-
drivers/video/console/fbcon_cw.c | 3 +-
drivers/video/console/fbcon_ud.c | 3 +-
drivers/video/fbdev/Kconfig | 3 +-
drivers/video/fbdev/atmel_lcdfb.c | 20 +
drivers/video/fbdev/aty/aty128fb.c | 63 +-
drivers/video/fbdev/au1200fb.c | 1 -
drivers/video/fbdev/controlfb.c | 15 +-
drivers/video/fbdev/core/cfbcopyarea.c | 13 +-
drivers/video/fbdev/core/fbsysfs.c | 12 +-
drivers/video/fbdev/cyber2000fb.c | 16 +-
drivers/video/fbdev/intelfb/intelfbhw.c | 3 +-
drivers/video/fbdev/matrox/matroxfb_base.c | 52 +-
drivers/video/fbdev/matrox/matroxfb_maven.c | 20 +-
drivers/video/fbdev/msm/msm_fb.c | 25 +-
drivers/video/fbdev/mx3fb.c | 2 +-
drivers/video/fbdev/omap2/dss/dispc-compat.c | 9 +-
drivers/video/fbdev/omap2/dss/dsi.c | 10 +-
drivers/video/fbdev/omap2/dss/manager-sysfs.c | 16 +-
drivers/video/fbdev/omap2/omapfb/omapfb-main.c | 14 +-
drivers/video/fbdev/pxafb.c | 20 +-
drivers/video/fbdev/riva/riva_hw.c | 1 -
drivers/video/fbdev/sa1100fb.c | 18 +-
drivers/video/fbdev/sh_mobile_hdmi.c | 44 +-
drivers/video/fbdev/sis/init301.c | 2 +-
drivers/video/fbdev/sis/sis_main.c | 2 +-
drivers/video/fbdev/stifb.c | 4 +-
drivers/video/fbdev/udlfb.c | 7 +-
drivers/video/fbdev/valkyriefb.c | 14 +-
drivers/video/fbdev/vermilion/vermilion.c | 1 -
drivers/video/of_display_timing.c | 3 +-
include/linux/font.h | 4 +-
include/video/of_display_timing.h | 16 +
lib/fonts/Kconfig | 9 +
lib/fonts/Makefile | 1 +
lib/fonts/font_6x10.c | 3086 ++++++++++++++++++++
lib/fonts/fonts.c | 4 +
39 files changed, 3421 insertions(+), 124 deletions(-)
create mode 100644 lib/fonts/font_6x10.c
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: Tomi Valkeinen <tomi.valkeinen@ti.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: LKML <linux-kernel@vger.kernel.org>,
Linux Fbdev development list <linux-fbdev@vger.kernel.org>
Subject: [GIT PULL] fbdev changes for 3.18
Date: Wed, 15 Oct 2014 14:23:02 +0300 [thread overview]
Message-ID: <543E5916.1020900@ti.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 5546 bytes --]
Hi Linus,
Please pull the fbdev changes for 3.18.
Tomi
The following changes since commit 52addcf9d6669fa439387610bc65c92fa0980cef:
Linux 3.17-rc2 (2014-08-25 15:36:20 -0700)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/tomba/linux.git tags/fbdev-3.18
for you to fetch changes up to 33ac9dba859b07d40e9ec826057d20c857fdede5:
fonts: Add 6x10 font (2014-10-09 11:35:48 +0300)
----------------------------------------------------------------
fbdev changes for 3.18
* new 6x10 font
* various small fixes and cleanups
----------------------------------------------------------------
Alexander Stein (1):
video/atmel_lcdfb: Introduce regulator support
Andy Shevchenko (1):
video: fbdev: use %*ph specifier to dump small buffers
Arnd Bergmann (1):
video: mx3fb: always enable BACKLIGHT_LCD_SUPPORT
Behan Webster (2):
arm, fbdev, omap2, LLVMLinux: Remove nested function from omap2 dss
arm, fbdev, omap2, LLVMLinux: Remove nested function from omapfb
Fabian Frederick (7):
video: vermilion: remove unnecessary break after goto
video: fbdev: stifb.c: use container_of to resolve stifb_info from fb_info
video: fbdev: sa1100fb.c: use container_of to resolve sa1100fb_info from fb_info
video: fbdev: controlfb.c: use container_of to resolve fb_info_control from fb_info
video: fbdev: cyber2000fb.c: use container_of to resolve cfb_info from fb_info
video: fbdev: pxafb.c: use container_of to resolve pxafb_info/layer from fb_info
video: fbdev: valkyriefb.c: use container_of to resolve fb_info_valkyrie from fb_info
Geert Uytterhoeven (3):
video: mx3fb: Update comment for dmaengine_prep_slave_sg() API
video: valkyriefb: Fix unused variable warning in set_valkyrie_clock()
fbdev: sh_mobile_hdmi: Re-init regs before irq re-enable on resume
Julia Lawall (8):
video: of: display_timing: delete unneeded test before of_node_put
video: fbdev: matrox: use c99 initializers in structures
OMAPDSS: DSI: use c99 initializers in structures
video: fbdev: aty: use c99 initializers in structures
video: fbdev: riva: delete double assignment
video: fbdev: intelfb: delete double assignment
video: fbdev: sis: delete double assignment
video: fbdev: au1200fb: delete double assignment
Maarten ter Huurne (1):
fonts: Add 6x10 font
Mikulas Patocka (2):
framebuffer: fix border color
framebuffer: fix screen corruption when copying
Pramod Gurav (2):
msm: msm_fb: Add remove function for platform driver for clean unloading
msm: msm_fb: Move to using managed resources of kzalloc
Rickard Strandqvist (1):
video: fbdev: sis: sis_main.c: Cleaning up missing null-terminate in conjunction with strncpy
Tomi Valkeinen (1):
videomode: provide dummy inline functions for !CONFIG_OF
.../devicetree/bindings/video/atmel,lcdc.txt | 3 +
drivers/video/console/bitblit.c | 3 +-
drivers/video/console/fbcon_ccw.c | 3 +-
drivers/video/console/fbcon_cw.c | 3 +-
drivers/video/console/fbcon_ud.c | 3 +-
drivers/video/fbdev/Kconfig | 3 +-
drivers/video/fbdev/atmel_lcdfb.c | 20 +
drivers/video/fbdev/aty/aty128fb.c | 63 +-
drivers/video/fbdev/au1200fb.c | 1 -
drivers/video/fbdev/controlfb.c | 15 +-
drivers/video/fbdev/core/cfbcopyarea.c | 13 +-
drivers/video/fbdev/core/fbsysfs.c | 12 +-
drivers/video/fbdev/cyber2000fb.c | 16 +-
drivers/video/fbdev/intelfb/intelfbhw.c | 3 +-
drivers/video/fbdev/matrox/matroxfb_base.c | 52 +-
drivers/video/fbdev/matrox/matroxfb_maven.c | 20 +-
drivers/video/fbdev/msm/msm_fb.c | 25 +-
drivers/video/fbdev/mx3fb.c | 2 +-
drivers/video/fbdev/omap2/dss/dispc-compat.c | 9 +-
drivers/video/fbdev/omap2/dss/dsi.c | 10 +-
drivers/video/fbdev/omap2/dss/manager-sysfs.c | 16 +-
drivers/video/fbdev/omap2/omapfb/omapfb-main.c | 14 +-
drivers/video/fbdev/pxafb.c | 20 +-
drivers/video/fbdev/riva/riva_hw.c | 1 -
drivers/video/fbdev/sa1100fb.c | 18 +-
drivers/video/fbdev/sh_mobile_hdmi.c | 44 +-
drivers/video/fbdev/sis/init301.c | 2 +-
drivers/video/fbdev/sis/sis_main.c | 2 +-
drivers/video/fbdev/stifb.c | 4 +-
drivers/video/fbdev/udlfb.c | 7 +-
drivers/video/fbdev/valkyriefb.c | 14 +-
drivers/video/fbdev/vermilion/vermilion.c | 1 -
drivers/video/of_display_timing.c | 3 +-
include/linux/font.h | 4 +-
include/video/of_display_timing.h | 16 +
lib/fonts/Kconfig | 9 +
lib/fonts/Makefile | 1 +
lib/fonts/font_6x10.c | 3086 ++++++++++++++++++++
lib/fonts/fonts.c | 4 +
39 files changed, 3421 insertions(+), 124 deletions(-)
create mode 100644 lib/fonts/font_6x10.c
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
next reply other threads:[~2014-10-15 11:23 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-10-15 11:23 Tomi Valkeinen [this message]
2014-10-15 11:23 ` [GIT PULL] fbdev changes for 3.18 Tomi Valkeinen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=543E5916.1020900@ti.com \
--to=tomi.valkeinen@ti.com \
--cc=linux-fbdev@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@linux-foundation.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.