1. 08 12月, 2015 2 次提交
  2. 28 8月, 2015 2 次提交
  3. 08 4月, 2015 1 次提交
    • J
      drm/nouveau: constify all struct drm_*_helper funcs pointers · d58ded76
      Jani Nikula 提交于
      They are not to be modified.
      
      Generated using the semantic patch:
      
      @@
      @@
      (
        const struct drm_crtc_helper_funcs *
      |
      - struct drm_crtc_helper_funcs *
      + const struct drm_crtc_helper_funcs *
      )
      
      @@
      @@
      (
        const struct drm_encoder_helper_funcs *
      |
      - struct drm_encoder_helper_funcs *
      + const struct drm_encoder_helper_funcs *
      )
      
      @@
      @@
      (
        const struct drm_connector_helper_funcs *
      |
      - struct drm_connector_helper_funcs *
      + const struct drm_connector_helper_funcs *
      )
      
      @@
      @@
      (
        const struct drm_plane_helper_funcs *
      |
      - struct drm_plane_helper_funcs *
      + const struct drm_plane_helper_funcs *
      )
      Signed-off-by: NJani Nikula <jani.nikula@intel.com>
      Signed-off-by: NDaniel Vetter <daniel.vetter@ffwll.ch>
      d58ded76
  4. 22 1月, 2015 3 次提交
  5. 10 8月, 2014 3 次提交
  6. 04 6月, 2014 1 次提交
  7. 23 1月, 2014 1 次提交
  8. 08 11月, 2013 1 次提交
  9. 26 4月, 2013 1 次提交
    • B
      drm/nv04/disp: hide all the cruft away in its own little hole · 1a646342
      Ben Skeggs 提交于
      It'd be pretty awesome if someone would care enough to port this all
      properly to a class interface, perhaps submitting a command stream to
      the core via a sw object on PFIFO (emulating how EVO works basically,
      and also what nvidia have done forever..)..
      
      But, this seems unlikely given how old this hardware is now, so, lets
      just hide it away.
      
      There's a heap of other bits and pieces laying around that are still
      tangled.  I'll (re)move them in pieces.
      Signed-off-by: NBen Skeggs <bskeggs@redhat.com>
      1a646342
  10. 20 2月, 2013 2 次提交
  11. 20 1月, 2013 1 次提交
  12. 29 11月, 2012 1 次提交
  13. 03 10月, 2012 6 次提交
  14. 24 5月, 2012 1 次提交
  15. 21 12月, 2011 3 次提交
  16. 20 9月, 2011 1 次提交
  17. 03 12月, 2010 2 次提交
  18. 26 7月, 2010 4 次提交
  19. 13 7月, 2010 1 次提交
    • B
      drm/nouveau: tidy connector/encoder creation a little · 8f1a6086
      Ben Skeggs 提交于
      Create connectors before encoders to avoid having to do another loop across
      encoder list whenever we create a new connector.  This allows us to pass
      the connector to the encoder creation functions, and avoid using a
      create_resources() callback since we can now call it directly.
      
      This can also potentially modify the connector ordering on nv50.  On cards
      where the DCB connector and encoder tables are in the same order, things
      will be unchanged.  However, there's some cards where the ordering between
      the tables differ, and in one case, leads us to naming the connectors
      "wrongly".
      Signed-off-by: NBen Skeggs <bskeggs@redhat.com>
      8f1a6086
  20. 25 2月, 2010 3 次提交