Message ID | 20200916150824.15749-8-karthik.b.s@intel.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Asynchronous flip implementation for i915 | expand |
On Wed, Sep 16, 2020 at 08:38:23PM +0530, Karthik B S wrote: > Add the details of the implementation of asynchronous flips for i915. > > v7: -Rebased. > > v8: -Rebased. > > v9: -Rebased. > > Signed-off-by: Karthik B S <karthik.b.s@intel.com> > Signed-off-by: Vandita Kulkarni <vandita.kulkarni@intel.com> > --- > Documentation/gpu/i915.rst | 6 ++++++ > 1 file changed, 6 insertions(+) > > diff --git a/Documentation/gpu/i915.rst b/Documentation/gpu/i915.rst > index 33cc6ddf8f64..84ead508f7ad 100644 > --- a/Documentation/gpu/i915.rst > +++ b/Documentation/gpu/i915.rst > @@ -118,6 +118,12 @@ Atomic Plane Helpers > .. kernel-doc:: drivers/gpu/drm/i915/display/intel_atomic_plane.c > :internal: > > +Asynchronous Page Flip > +---------------------- > + > +.. kernel-doc:: drivers/gpu/drm/i915/display/intel_display.c > + :doc: asynchronous flip implementation A bit weird having this in one patch but the actual docs in the other. I guess just squash them together, or extract the docs from the other patch into this one? Either way Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > + > Output Probing > -------------- > > -- > 2.22.0
On 9/18/2020 5:28 PM, Ville Syrjälä wrote: > On Wed, Sep 16, 2020 at 08:38:23PM +0530, Karthik B S wrote: >> Add the details of the implementation of asynchronous flips for i915. >> >> v7: -Rebased. >> >> v8: -Rebased. >> >> v9: -Rebased. >> >> Signed-off-by: Karthik B S <karthik.b.s@intel.com> >> Signed-off-by: Vandita Kulkarni <vandita.kulkarni@intel.com> >> --- >> Documentation/gpu/i915.rst | 6 ++++++ >> 1 file changed, 6 insertions(+) >> >> diff --git a/Documentation/gpu/i915.rst b/Documentation/gpu/i915.rst >> index 33cc6ddf8f64..84ead508f7ad 100644 >> --- a/Documentation/gpu/i915.rst >> +++ b/Documentation/gpu/i915.rst >> @@ -118,6 +118,12 @@ Atomic Plane Helpers >> .. kernel-doc:: drivers/gpu/drm/i915/display/intel_atomic_plane.c >> :internal: >> >> +Asynchronous Page Flip >> +---------------------- >> + >> +.. kernel-doc:: drivers/gpu/drm/i915/display/intel_display.c >> + :doc: asynchronous flip implementation > > A bit weird having this in one patch but the actual docs in the other. > I guess just squash them together, or extract the docs from the other > patch into this one? > Thanks for the review. Sure, I'll move all the doc changes to this patch. > Either way > Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > Thanks, Karthik.B.S >> + >> Output Probing >> -------------- >> >> -- >> 2.22.0 >
diff --git a/Documentation/gpu/i915.rst b/Documentation/gpu/i915.rst index 33cc6ddf8f64..84ead508f7ad 100644 --- a/Documentation/gpu/i915.rst +++ b/Documentation/gpu/i915.rst @@ -118,6 +118,12 @@ Atomic Plane Helpers .. kernel-doc:: drivers/gpu/drm/i915/display/intel_atomic_plane.c :internal: +Asynchronous Page Flip +---------------------- + +.. kernel-doc:: drivers/gpu/drm/i915/display/intel_display.c + :doc: asynchronous flip implementation + Output Probing --------------