1. 18 8月, 2015 12 次提交
  2. 01 4月, 2015 2 次提交
  3. 31 3月, 2015 3 次提交
  4. 28 1月, 2015 2 次提交
  5. 08 1月, 2015 8 次提交
  6. 07 1月, 2015 4 次提交
  7. 26 11月, 2014 1 次提交
    • P
      drm: imx: Move imx-drm driver out of staging · 6556f7f8
      Philipp Zabel 提交于
      The imx-drm driver was put into staging mostly for the following reasons,
      all of which have been addressed or superseded:
       - convert the irq driver to use linear irq domains
       - work out the device tree bindings, this lead to the common of_graph
         bindings being used
       - factor out common helper functions, this mostly resulted in the
         component framework and drm of_graph helpers.
      
      Before adding new fixes, and certainly before adding new features,
      move it into its proper place below drivers/gpu/drm.
      Signed-off-by: NPhilipp Zabel <p.zabel@pengutronix.de>
      Signed-off-by: NDave Airlie <airlied@redhat.com>
      6556f7f8
  8. 20 10月, 2014 1 次提交
  9. 29 9月, 2014 1 次提交
  10. 04 6月, 2014 1 次提交
  11. 23 5月, 2014 1 次提交
    • F
      imx-hdmi: Make checkpatch happy · b44ab1b0
      Fabio Estevam 提交于
      WARNING: Missing a blank line after declarations
      #160: FILE: drivers/staging/imx-drm/imx-hdmi.c:160:
      +	u8 val = hdmi_readb(hdmi, reg) & ~mask;
      +	val |= data & mask;
      
      WARNING: Missing a blank line after declarations
      #1609: FILE: drivers/staging/imx-drm/imx-hdmi.c:1609:
      +		const struct platform_device_id *device_id = of_id->data;
      +		hdmi->dev_type = device_id->driver_data;
      
      total: 0 errors, 2 warnings, 1767 lines checked
      
      drivers/staging/imx-drm/imx-hdmi.c has style problems, please review.
      
      If any of these errors are false positives, please report
      them to the maintainer, see CHECKPATCH in MAINTAINERS.
      Signed-off-by: NFabio Estevam <fabio.estevam@freescale.com>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      b44ab1b0
  12. 26 4月, 2014 3 次提交
  13. 22 4月, 2014 1 次提交
    • A
      drm: make mode_valid callback optional · f9b0e251
      Andrzej Hajda 提交于
      Many drm connectors do not need mode validation.
      The patch makes this callback optional and removes dumb implementations.
      
      v2: Rebase:
      - imx move to a shared (but still dummy) ->mode_valid implementation.
      - probe helpers have been extracted to drm_probe_helper.c
      
      Signed-off-by: Andrzej Hajda <a.hajda@samsung.com> (v1)
      Signed-off-by: NDaniel Vetter <daniel.vetter@ffwll.ch>
      f9b0e251