Message ID | 20241010124545.82023-1-thomas.hellstrom@linux.intel.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | drm/ttm: Fix incorrect use of kernel-doc format | expand |
On 10/10/2024 2:45 PM, Thomas Hellström wrote: > Add a missing colon. > > Cc: dri-devel@lists.freedesktop.org > Reported-by: Stephen Rothwell <sfr@canb.auug.org.au> > Closes: https://lore.kernel.org/linux-next/20241010160942.192caf60@canb.auug.org.au/ > Fixes: fc5d96670eb2 ("drm/ttm: Move swapped objects off the manager's LRU list") > Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com> Reviewed-by: Nirmoy Das <nirmoy.das@intel.com> > --- > include/drm/ttm/ttm_device.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/include/drm/ttm/ttm_device.h b/include/drm/ttm/ttm_device.h > index 438358f72716..39b8636b1845 100644 > --- a/include/drm/ttm/ttm_device.h > +++ b/include/drm/ttm/ttm_device.h > @@ -252,7 +252,7 @@ struct ttm_device { > spinlock_t lru_lock; > > /** > - * @unevictable Buffer objects which are pinned or swapped and as such > + * @unevictable: Buffer objects which are pinned or swapped and as such > * not on an LRU list. > */ > struct list_head unevictable;
On Thu, 2024-10-10 at 16:26 +0200, Nirmoy Das wrote: > > On 10/10/2024 2:45 PM, Thomas Hellström wrote: > > Add a missing colon. > > > > Cc: dri-devel@lists.freedesktop.org > > Reported-by: Stephen Rothwell <sfr@canb.auug.org.au> > > Closes: > > https://lore.kernel.org/linux-next/20241010160942.192caf60@canb.auug.org.au/ > > Fixes: fc5d96670eb2 ("drm/ttm: Move swapped objects off the > > manager's LRU list") > > Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com> > Reviewed-by: Nirmoy Das <nirmoy.das@intel.com> Thanks, Nirmoy! /Thomas > > --- > > include/drm/ttm/ttm_device.h | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/include/drm/ttm/ttm_device.h > > b/include/drm/ttm/ttm_device.h > > index 438358f72716..39b8636b1845 100644 > > --- a/include/drm/ttm/ttm_device.h > > +++ b/include/drm/ttm/ttm_device.h > > @@ -252,7 +252,7 @@ struct ttm_device { > > spinlock_t lru_lock; > > > > /** > > - * @unevictable Buffer objects which are pinned or swapped > > and as such > > + * @unevictable: Buffer objects which are pinned or > > swapped and as such > > * not on an LRU list. > > */ > > struct list_head unevictable;
diff --git a/include/drm/ttm/ttm_device.h b/include/drm/ttm/ttm_device.h index 438358f72716..39b8636b1845 100644 --- a/include/drm/ttm/ttm_device.h +++ b/include/drm/ttm/ttm_device.h @@ -252,7 +252,7 @@ struct ttm_device { spinlock_t lru_lock; /** - * @unevictable Buffer objects which are pinned or swapped and as such + * @unevictable: Buffer objects which are pinned or swapped and as such * not on an LRU list. */ struct list_head unevictable;
Add a missing colon. Cc: dri-devel@lists.freedesktop.org Reported-by: Stephen Rothwell <sfr@canb.auug.org.au> Closes: https://lore.kernel.org/linux-next/20241010160942.192caf60@canb.auug.org.au/ Fixes: fc5d96670eb2 ("drm/ttm: Move swapped objects off the manager's LRU list") Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com> --- include/drm/ttm/ttm_device.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)