Skip to content

Commit 5177e5f

Browse files
committed
nouveau/gsp: fix message signature.
This original one was backwards, compared to traces from nvidia driver. Reviewed-by: Danilo Krummrich <[email protected]> Signed-off-by: Dave Airlie <[email protected]>
1 parent b5bad8c commit 5177e5f

File tree

1 file changed

+1
-1
lines changed
  • drivers/gpu/drm/nouveau/nvkm/subdev/gsp

1 file changed

+1
-1
lines changed

drivers/gpu/drm/nouveau/nvkm/subdev/gsp/r535.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -693,7 +693,7 @@ r535_gsp_rpc_get(struct nvkm_gsp *gsp, u32 fn, u32 argc)
693693
return NULL;
694694

695695
rpc->header_version = 0x03000000;
696-
rpc->signature = ('V' << 24) | ('R' << 16) | ('P' << 8) | 'C';
696+
rpc->signature = ('C' << 24) | ('P' << 16) | ('R' << 8) | 'V';
697697
rpc->function = fn;
698698
rpc->rpc_result = 0xffffffff;
699699
rpc->rpc_result_private = 0xffffffff;

0 commit comments

Comments
 (0)