drm/nouveau: fix the broken marco GSP_MSG_MAX_SIZE
[ Upstream commit bbae6680cfe38b033250b483722e60ccd865976f ] The macro GSP_MSG_MAX_SIZE refers to another macro that doesn't exist. It represents the max GSP message element size. Fix the broken marco so it can be used to replace some magic numbers in the code. Signed-off-by: Zhi Wang <zhiw@nvidia.com> Signed-off-by: Danilo Krummrich <dakr@kernel.org> Link: https://patchwork.freedesktop.org/patch/msgid/20250124182958.2040494-8-zhiw@nvidia.com Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
878ccaf79c
commit
e1fffcd1d7
@@ -58,7 +58,7 @@
|
||||
#include <linux/parser.h>
|
||||
|
||||
#define GSP_MSG_MIN_SIZE GSP_PAGE_SIZE
|
||||
#define GSP_MSG_MAX_SIZE GSP_PAGE_MIN_SIZE * 16
|
||||
#define GSP_MSG_MAX_SIZE (GSP_MSG_MIN_SIZE * 16)
|
||||
|
||||
struct r535_gsp_msg {
|
||||
u8 auth_tag_buffer[16];
|
||||
|
||||
Reference in New Issue
Block a user