Lines Matching defs:ibmpex_bmc_data
77 struct ibmpex_bmc_data { struct
78 struct list_head list;
79 struct device *hwmon_dev;
80 struct device *bmc_device;
81 struct mutex lock;
82 char valid;
83 unsigned long last_updated; /* In jiffies */
85 struct ipmi_addr address;
86 struct completion read_complete;
87 ipmi_user_t user;
88 int interface;
90 struct kernel_ipmi_msg tx_message;
91 unsigned char tx_msg_data[IPMI_MAX_MSG_LENGTH];
92 long tx_msgid;
94 unsigned char rx_msg_data[IPMI_MAX_MSG_LENGTH];
95 unsigned long rx_msg_len;
96 unsigned char rx_result;
97 int rx_recv_type;
99 unsigned char sensor_major;
100 unsigned char sensor_minor;
124 static int ibmpex_send_message(struct ibmpex_bmc_data *data) in ibmpex_send_message() argument