diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2025-01-22 21:57:57 +0300 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2025-01-22 21:57:57 +0300 |
| commit | df60eac9efe8be41cd30767ed001c04f478e0f4e (patch) | |
| tree | 8197a2fb5dc69445a9c553d52008034263131f0d /include | |
| parent | 641b0c64b85a9b21110268f511f20d6887406117 (diff) | |
| parent | b4339d599bc2b95be7887bde82114c153f6d0c10 (diff) | |
| download | linux-df60eac9efe8be41cd30767ed001c04f478e0f4e.tar.xz | |
Merge tag 'for-linus-6.14-1' of https://github.com/cminyard/linux-ipmi
Pull ipmi updates from Corey Minyard:
- I'm switching to a new email address, so update that
- Minor fixes for formats and return values and missing ifdefs
- A fix for some error handling that causes a loss of messages
* tag 'for-linus-6.14-1' of https://github.com/cminyard/linux-ipmi:
MAINTAINERS: ipmi: update my email address
ipmi: ssif_bmc: Fix new request loss when bmc ready for a response
ipmi: make ipmi_destroy_user() return void
char:ipmi: Fix a not-used variable on a non-ACPI system
char:ipmi: Fix the wrong format specifier
ipmi: ipmb: Add check devm_kasprintf() returned value
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/ipmi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/ipmi.h b/include/linux/ipmi.h index a1c9c0d48ebf..2f74dd90c271 100644 --- a/include/linux/ipmi.h +++ b/include/linux/ipmi.h @@ -126,7 +126,7 @@ int ipmi_create_user(unsigned int if_num, * the users before you destroy the callback structures, it should be * safe, too. */ -int ipmi_destroy_user(struct ipmi_user *user); +void ipmi_destroy_user(struct ipmi_user *user); /* Get the IPMI version of the BMC we are talking to. */ int ipmi_get_version(struct ipmi_user *user, |
