From: Yicong Hui Date: Sun, 5 Apr 2026 19:23:09 +0000 (+0100) Subject: drm/panthor: Fix kernel-doc warning in panthor_sched.c X-Git-Tag: v7.2-rc1~141^2~26^2~154 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=c95ac578846326994c8006713acaad77bc8edd38;p=thirdparty%2Flinux.git drm/panthor: Fix kernel-doc warning in panthor_sched.c Fix the following W=1 kerneldoc warnings by adding the missing parameter descriptions for @ptdev and @events in panthor_sched_report_fw_events() and @ptdev in panthor_sched_report_mmu_fault() Warning: drivers/gpu/drm/panthor/panthor_sched.c:1898 function parameter 'ptdev' not described in 'panthor_sched_report_fw_events' Warning: drivers/gpu/drm/panthor/panthor_sched.c:1898 function parameter 'events' not described in 'panthor_sched_report_fw_events' Warning: drivers/gpu/drm/panthor/panthor_sched.c:2783 function parameter 'ptdev' not described in 'panthor_sched_report_mmu_fault' Fixes: de8548813824 ("drm/panthor: Add the scheduler logical block") Signed-off-by: Yicong Hui Reviewed-by: Boris Brezillon Reviewed-by: Steven Price Signed-off-by: Steven Price Link: https://patch.msgid.link/20260405192309.389039-1-yiconghui@gmail.com --- diff --git a/drivers/gpu/drm/panthor/panthor_sched.c b/drivers/gpu/drm/panthor/panthor_sched.c index 97581943a138c..3bb1cb5a26563 100644 --- a/drivers/gpu/drm/panthor/panthor_sched.c +++ b/drivers/gpu/drm/panthor/panthor_sched.c @@ -1893,6 +1893,8 @@ static void process_fw_events_work(struct work_struct *work) /** * panthor_sched_report_fw_events() - Report FW events to the scheduler. + * @ptdev: Device. + * @events: Bitmask of pending FW events to report. */ void panthor_sched_report_fw_events(struct panthor_device *ptdev, u32 events) { @@ -2778,6 +2780,7 @@ static void panthor_group_start(struct panthor_group *group) /** * panthor_sched_report_mmu_fault() - Report MMU faults to the scheduler. + * @ptdev: Device. */ void panthor_sched_report_mmu_fault(struct panthor_device *ptdev) {