* [PULL] drm documentation updates for 3.15
@ 2014-03-13 12:33 Daniel Vetter
2014-03-15 11:17 ` Daniel Vetter
0 siblings, 1 reply; 2+ messages in thread
From: Daniel Vetter @ 2014-03-13 12:33 UTC (permalink / raw)
To: Dave Airlie; +Cc: DRI Development
Hi Dave,
Here's my drm documentation update and driver api polish pull request.
Alex reviewed the entire pile, I've applied a little bit of spelling
polish in a few places since then and otherwise the Usual Suspects (David,
Rob, ...) don't seem up to have another look at it (I've poked them on
irc). So I think it's as good as it gets ;-)
Note that I've dropped the final imx breaker patch since that's blocked on
imx getting sane. Once that's landed I'll ping you to pick up that
straggler.
Cheers, Daniel
The following changes since commit 786a7828bc74b9b1466e83abb200b75f80f94121:
Merge branch 'drm-next-3.15' of git://people.freedesktop.org/~deathsimple/linux into drm-next (2014-03-05 14:52:19 +1000)
are available in the git repository at:
ssh://people.freedesktop.org/~danvet/drm.git drm-docs
for you to fetch changes up to c8e32cc1219fc15135b696b726421571f68bd97e:
drm: kerneldoc polish for drm_crtc.c (2014-03-13 12:48:49 +0100)
----------------------------------------------------------------
Daniel Vetter (33):
drm/doc: Clarify the dumb object interfaces
drm/doc: Fix up kerneldoc in drm_edid.c
drm/doc: Clean up and integrate kerneldoc for drm_gem.c
drm/doc: Remove <term> from rendernode docs
drm/doc: Reorganize driver documentation
drm/doc: Move the vma offset manager to the right spot
drm/doc: Remove the "command submissin and fencing" section
drm/doc: No more drm perf counters
drm/doc: Document drm_helper_resume_force_mode
drm/doc: Hide legacy horrors better
drm/docs: Include hdmi infoframe helper reference
drm/doc: Clarify PRIME documentation
drm/doc: Add PRIME function references
drm/doc: Update copyright
drm/mm: Remove MM_UNUSED_TARGET
drm/doc: Overview documentation for drm_mm.c
drm/doc: Add function reference documentation for drm_mm.c
drm/kms: rip out drm_mode_connector_detach_encoder
drm/doc: Integrate drm_modes.c kerneldoc
drm/doc: Repleace LOCKING kerneldoc sections in drm_modes.c
drm: move drm_mode related functions into drm_modes.c
drm: extract drm_modes.h for drm_crtc.h functions
drm/modes: remove drm_mode_height/width
drm/modes: drop return value from drm_display_mode_from_videomode
drm/modes: drop maxPitch from drm_mode_validate_size
drm: polish function kerneldoc for drm_modes.[hc]
drm: remove drm_display_mode->private_size
drm/doc: Fix misplaced </para>
drm: remove return value from drm_helper_mode_fill_fb_struct
drm/crtc-helper: remove LOCKING from kerneldoc
drm: drop error code for drm_helper_resume_force_mode
drm: kerneldoc polish for drm_crtc_helper.c
drm: kerneldoc polish for drm_crtc.c
Documentation/DocBook/drm.tmpl | 500 ++++++++++++++-------
drivers/gpu/drm/drm_crtc.c | 697 ++++++++++++++++++++++++-----
drivers/gpu/drm/drm_crtc_helper.c | 193 ++++++--
drivers/gpu/drm/drm_crtc_internal.h | 38 ++
drivers/gpu/drm/drm_edid.c | 30 +-
drivers/gpu/drm/drm_fb_helper.c | 4 +-
drivers/gpu/drm/drm_gem.c | 63 ++-
drivers/gpu/drm/drm_mm.c | 211 ++++++++-
drivers/gpu/drm/drm_modes.c | 346 +++++++-------
drivers/gpu/drm/drm_prime.c | 110 ++++-
drivers/staging/imx-drm/imx-ldb.c | 2 -
drivers/staging/imx-drm/parallel-display.c | 2 -
include/drm/drmP.h | 29 --
include/drm/drm_crtc.h | 174 +------
include/drm/drm_crtc_helper.h | 6 +-
include/drm/drm_mm.h | 154 +++++--
include/drm/drm_modes.h | 237 ++++++++++
include/linux/hdmi.h | 12 +
18 files changed, 2013 insertions(+), 795 deletions(-)
create mode 100644 drivers/gpu/drm/drm_crtc_internal.h
create mode 100644 include/drm/drm_modes.h
--
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PULL] drm documentation updates for 3.15
2014-03-13 12:33 [PULL] drm documentation updates for 3.15 Daniel Vetter
@ 2014-03-15 11:17 ` Daniel Vetter
0 siblings, 0 replies; 2+ messages in thread
From: Daniel Vetter @ 2014-03-15 11:17 UTC (permalink / raw)
To: Dave Airlie; +Cc: DRI Development
On Thu, Mar 13, 2014 at 01:33:01PM +0100, Daniel Vetter wrote:
> Hi Dave,
>
> Here's my drm documentation update and driver api polish pull request.
> Alex reviewed the entire pile, I've applied a little bit of spelling
> polish in a few places since then and otherwise the Usual Suspects (David,
> Rob, ...) don't seem up to have another look at it (I've poked them on
> irc). So I think it's as good as it gets ;-)
>
> Note that I've dropped the final imx breaker patch since that's blocked on
> imx getting sane. Once that's landed I'll ping you to pick up that
> straggler.
As mention on irc I've had to throw an imx fixup straggler on top of this
one here. Updated pull request below. All the other patches are unchanged.
Cheers, Daniel
The following changes since commit 786a7828bc74b9b1466e83abb200b75f80f94121:
Merge branch 'drm-next-3.15' of git://people.freedesktop.org/~deathsimple/linux into drm-next (2014-03-05 14:52:19 +1000)
are available in the git repository at:
ssh://people.freedesktop.org/~danvet/drm.git drm-docs
for you to fetch changes up to fc1645ac826c82ebad4402aabbf65595b671ecca:
drm/imx: remove drm_mode_connector_detach_encoder harder (2014-03-15 12:11:54 +0100)
----------------------------------------------------------------
Daniel Vetter (34):
drm/doc: Clarify the dumb object interfaces
drm/doc: Fix up kerneldoc in drm_edid.c
drm/doc: Clean up and integrate kerneldoc for drm_gem.c
drm/doc: Remove <term> from rendernode docs
drm/doc: Reorganize driver documentation
drm/doc: Move the vma offset manager to the right spot
drm/doc: Remove the "command submissin and fencing" section
drm/doc: No more drm perf counters
drm/doc: Document drm_helper_resume_force_mode
drm/doc: Hide legacy horrors better
drm/docs: Include hdmi infoframe helper reference
drm/doc: Clarify PRIME documentation
drm/doc: Add PRIME function references
drm/doc: Update copyright
drm/mm: Remove MM_UNUSED_TARGET
drm/doc: Overview documentation for drm_mm.c
drm/doc: Add function reference documentation for drm_mm.c
drm/kms: rip out drm_mode_connector_detach_encoder
drm/doc: Integrate drm_modes.c kerneldoc
drm/doc: Repleace LOCKING kerneldoc sections in drm_modes.c
drm: move drm_mode related functions into drm_modes.c
drm: extract drm_modes.h for drm_crtc.h functions
drm/modes: remove drm_mode_height/width
drm/modes: drop return value from drm_display_mode_from_videomode
drm/modes: drop maxPitch from drm_mode_validate_size
drm: polish function kerneldoc for drm_modes.[hc]
drm: remove drm_display_mode->private_size
drm/doc: Fix misplaced </para>
drm: remove return value from drm_helper_mode_fill_fb_struct
drm/crtc-helper: remove LOCKING from kerneldoc
drm: drop error code for drm_helper_resume_force_mode
drm: kerneldoc polish for drm_crtc_helper.c
drm: kerneldoc polish for drm_crtc.c
drm/imx: remove drm_mode_connector_detach_encoder harder
Documentation/DocBook/drm.tmpl | 500 ++++++++++++++-------
drivers/gpu/drm/drm_crtc.c | 697 ++++++++++++++++++++++++-----
drivers/gpu/drm/drm_crtc_helper.c | 193 ++++++--
drivers/gpu/drm/drm_crtc_internal.h | 38 ++
drivers/gpu/drm/drm_edid.c | 30 +-
drivers/gpu/drm/drm_fb_helper.c | 4 +-
drivers/gpu/drm/drm_gem.c | 63 ++-
drivers/gpu/drm/drm_mm.c | 211 ++++++++-
drivers/gpu/drm/drm_modes.c | 346 +++++++-------
drivers/gpu/drm/drm_prime.c | 110 ++++-
drivers/staging/imx-drm/imx-hdmi.c | 1 -
drivers/staging/imx-drm/imx-ldb.c | 2 -
drivers/staging/imx-drm/imx-tve.c | 2 -
drivers/staging/imx-drm/parallel-display.c | 2 -
include/drm/drmP.h | 29 --
include/drm/drm_crtc.h | 174 +------
include/drm/drm_crtc_helper.h | 6 +-
include/drm/drm_mm.h | 154 +++++--
include/drm/drm_modes.h | 237 ++++++++++
include/linux/hdmi.h | 12 +
20 files changed, 2013 insertions(+), 798 deletions(-)
create mode 100644 drivers/gpu/drm/drm_crtc_internal.h
create mode 100644 include/drm/drm_modes.h
--
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-03-15 11:17 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-13 12:33 [PULL] drm documentation updates for 3.15 Daniel Vetter
2014-03-15 11:17 ` Daniel Vetter
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox