summaryrefslogtreecommitdiff
path: root/include/linux
diff options
context:
space:
mode:
authorCorey Minyard <corey@minyard.net>2025-08-20 22:09:11 +0300
committerCorey Minyard <corey@minyard.net>2025-09-08 18:21:41 +0300
commit3bc54ab3b9790ca92f197e9822e486665daa321c (patch)
tree8da715b2c7be32d1b8e905647f5652801310e2ae /include/linux
parent9cf93a8fa9513c6d3cc65bdd50e05c1355cef322 (diff)
downloadlinux-3bc54ab3b9790ca92f197e9822e486665daa321c.tar.xz
ipmi: Rename "user_data" to "recv_msg" in an SMI message
It's only used to hold the corresponding receive message, so fix the name to make that clear and the type so nothing else can be accidentally assigned to it. Signed-off-by: Corey Minyard <corey@minyard.net>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/ipmi_smi.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/ipmi_smi.h b/include/linux/ipmi_smi.h
index c2d975bbff60..892e2d656e1e 100644
--- a/include/linux/ipmi_smi.h
+++ b/include/linux/ipmi_smi.h
@@ -110,7 +110,8 @@ struct ipmi_smi_msg {
enum ipmi_smi_msg_type type;
long msgid;
- void *user_data;
+ /* Response to this message, will be NULL if not from a user request. */
+ struct ipmi_recv_msg *recv_msg;
int data_size;
unsigned char data[IPMI_MAX_MSG_LENGTH];