Message ID | 14865c294b60fef58f660922889775bd57ce44c2.1660829433.git.mchehab@kernel.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Fix documentation build warnings against 6.0-rc1 | expand |
On 8/18/22 20:38, Mauro Carvalho Chehab wrote: > Address this warning: > Documentation/leds/leds-qcom-lpg.rst: WARNING: o documento não está incluído em nenhum toctree > > Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> > --- > > See [PATCH 00/13] at: https://lore.kernel.org/all/cover.1660829433.git.mchehab@kernel.org/ > > Documentation/leds/index.rst | 1 + > drivers/gpu/drm/scheduler/sched_main.c | 1 + > include/drm/gpu_scheduler.h | 1 + > 3 files changed, 3 insertions(+) > > diff --git a/Documentation/leds/index.rst b/Documentation/leds/index.rst > index e5d63b940045..014e009b0761 100644 > --- a/Documentation/leds/index.rst > +++ b/Documentation/leds/index.rst > @@ -25,4 +25,5 @@ LEDs > leds-lp5562 > leds-lp55xx > leds-mlxcpld > + leds-qcom-lpg > leds-sc27xx > diff --git a/drivers/gpu/drm/scheduler/sched_main.c b/drivers/gpu/drm/scheduler/sched_main.c > index 68317d3a7a27..56c53a616816 100644 > --- a/drivers/gpu/drm/scheduler/sched_main.c > +++ b/drivers/gpu/drm/scheduler/sched_main.c > @@ -994,6 +994,7 @@ static int drm_sched_main(void *param) > * used > * @score: optional score atomic shared with other schedulers > * @name: name used for debugging > + * @dev: Device structure > * > * Return 0 on success, otherwise error code. > */ > diff --git a/include/drm/gpu_scheduler.h b/include/drm/gpu_scheduler.h > index addb135eeea6..f31988e03256 100644 > --- a/include/drm/gpu_scheduler.h > +++ b/include/drm/gpu_scheduler.h > @@ -435,6 +435,7 @@ struct drm_sched_backend_ops { > * @_score: score used when the driver doesn't provide one > * @ready: marks if the underlying HW is ready to work > * @free_guilty: A hit to time out handler to free the guilty job. > + * @dev: Device structure > * > * One scheduler is implemented for each hardware ring. > */ Hi Mauro, I have already sent the fix (resend a long time ago) at [1] and got Acked-by from Pavel, but seems like he forgot to push it. Maybe the subsystem had maintenanceship issue as pointed by Andy (CC'ed) ([2]). [1]: https://lore.kernel.org/linux-doc/20220612000125.9777-1-bagasdotme@gmail.com/ [2]: https://lore.kernel.org/lkml/CAHp75VeWKgyz32scczN0c+iJwGZXVP42g0NG0oXrdJ34GyHB8w@mail.gmail.com/ Thanks.
diff --git a/Documentation/leds/index.rst b/Documentation/leds/index.rst index e5d63b940045..014e009b0761 100644 --- a/Documentation/leds/index.rst +++ b/Documentation/leds/index.rst @@ -25,4 +25,5 @@ LEDs leds-lp5562 leds-lp55xx leds-mlxcpld + leds-qcom-lpg leds-sc27xx diff --git a/drivers/gpu/drm/scheduler/sched_main.c b/drivers/gpu/drm/scheduler/sched_main.c index 68317d3a7a27..56c53a616816 100644 --- a/drivers/gpu/drm/scheduler/sched_main.c +++ b/drivers/gpu/drm/scheduler/sched_main.c @@ -994,6 +994,7 @@ static int drm_sched_main(void *param) * used * @score: optional score atomic shared with other schedulers * @name: name used for debugging + * @dev: Device structure * * Return 0 on success, otherwise error code. */ diff --git a/include/drm/gpu_scheduler.h b/include/drm/gpu_scheduler.h index addb135eeea6..f31988e03256 100644 --- a/include/drm/gpu_scheduler.h +++ b/include/drm/gpu_scheduler.h @@ -435,6 +435,7 @@ struct drm_sched_backend_ops { * @_score: score used when the driver doesn't provide one * @ready: marks if the underlying HW is ready to work * @free_guilty: A hit to time out handler to free the guilty job. + * @dev: Device structure * * One scheduler is implemented for each hardware ring. */
Address this warning: Documentation/leds/leds-qcom-lpg.rst: WARNING: o documento não está incluído em nenhum toctree Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> --- See [PATCH 00/13] at: https://lore.kernel.org/all/cover.1660829433.git.mchehab@kernel.org/ Documentation/leds/index.rst | 1 + drivers/gpu/drm/scheduler/sched_main.c | 1 + include/drm/gpu_scheduler.h | 1 + 3 files changed, 3 insertions(+)