From: Michael J. Ruhl Date: Thu, 5 Dec 2024 18:36:49 +0000 (-0500) Subject: drm/xe/vsec: Address static checker issue X-Git-Tag: v6.14-rc1~174^2~17^2~14 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5cc1ccb61ecfec535a36bd6a2fb0b12226f79671;p=thirdparty%2Fkernel%2Flinux.git drm/xe/vsec: Address static checker issue The callback structure should be static. Add static attribute. Fixes: 0c45e76fcc62 ("drm/xe/vsec: Support BMG devices") Reported-by: kernel test robot Closes: https://lore.kernel.org/oe-kbuild-all/202412050418.8ecQxYXj-lkp@intel.com/ Signed-off-by: Michael J. Ruhl Reviewed-by: Rodrigo Vivi Link: https://patchwork.freedesktop.org/patch/msgid/20241205183649.3120032-1-michael.j.ruhl@intel.com Signed-off-by: Rodrigo Vivi --- diff --git a/drivers/gpu/drm/xe/xe_vsec.c b/drivers/gpu/drm/xe/xe_vsec.c index 17ebc3ffb573d..edaec262ed0a5 100644 --- a/drivers/gpu/drm/xe/xe_vsec.c +++ b/drivers/gpu/drm/xe/xe_vsec.c @@ -180,7 +180,7 @@ static int xe_pmt_telem_read(struct pci_dev *pdev, u32 guid, u64 *data, loff_t u return count; } -struct pmt_callbacks xe_pmt_cb = { +static struct pmt_callbacks xe_pmt_cb = { .read_telem = xe_pmt_telem_read, };