aboutsummaryrefslogtreecommitdiff
path: root/include/drm/drm_encoder_slave.h
AgeCommit message (Collapse)AuthorFilesLines
2013-02-17drm: i2c encoder helper wrappersRob Clark1-0/+20
Simplify life for drivers using an encoder-slave, so that they can make their drm_encoder_helper_funcs const, rather than needing to dynamically allocate and populate them. Signed-off-by: Rob Clark <[email protected]>
2012-10-02UAPI: (Scripted) Convert #include "..." to #include <path/...> in kernel ↵David Howells1-2/+2
system headers Convert #include "..." to #include <path/...> in kernel system headers. Signed-off-by: David Howells <[email protected]> Acked-by: Arnd Bergmann <[email protected]> Acked-by: Thomas Gleixner <[email protected]> Acked-by: Paul E. McKenney <[email protected]> Acked-by: Dave Jones <[email protected]>
2012-07-19drm: Make the .mode_fixup() operations mode argument a const pointerLaurent Pinchart1-1/+1
The passed mode must not be modified by the operation, make it const. Signed-off-by: Laurent Pinchart <[email protected]> Reviewed-by: Alex Deucher <[email protected]> Signed-off-by: Dave Airlie <[email protected]>
2009-08-19drm/kms: no need to return void value (encoder)Pekka Paalanen1-1/+1
Cc: Francisco Jerez <[email protected]> Signed-off-by: Pekka Paalanen <[email protected]> Signed-off-by: Dave Airlie <[email protected]>
2009-08-19drm: fixup includes in encoder slave header files.Dave Airlie1-2/+2
Signed-off-by: Dave Airlie <[email protected]>
2009-08-04drm/kms: slave encoder interface.Francisco Jerez1-0/+162
Define some helper functions to make easier to detach a KMS encoder implementation from the drm module of the GPU it's used in. This is mainly useful for some external I2C encoders known to be present on cards with GPUs from several different manufacturers. Signed-off-by: Francisco Jerez <[email protected]> Signed-off-by: Dave Airlie <[email protected]>