Commit 5177e5fa authored by Dave Airlie's avatar Dave Airlie

nouveau/gsp: fix message signature.

This original one was backwards, compared to traces from nvidia driver.
Reviewed-by: default avatarDanilo Krummrich <dakr@redhat.com>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent b5bad8c1
......@@ -693,7 +693,7 @@ r535_gsp_rpc_get(struct nvkm_gsp *gsp, u32 fn, u32 argc)
return NULL;
rpc->header_version = 0x03000000;
rpc->signature = ('V' << 24) | ('R' << 16) | ('P' << 8) | 'C';
rpc->signature = ('C' << 24) | ('P' << 16) | ('R' << 8) | 'V';
rpc->function = fn;
rpc->rpc_result = 0xffffffff;
rpc->rpc_result_private = 0xffffffff;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment