diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2017-02-28 21:06:30 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2017-02-28 21:06:30 -0800 |
commit | 2d6be4abf514fc26c83d239c7f31da1f95e4a31d (patch) | |
tree | 674bb7285194fff110112f2848e3a907ef044e39 /Documentation | |
parent | cf393195c3ba5d4c0a8e237eb00f7ef104876ee5 (diff) | |
parent | eb994594bc22220976f367c03ffa141580aa45e4 (diff) | |
download | linux-2d6be4abf514fc26c83d239c7f31da1f95e4a31d.tar.bz2 |
Merge tag 'for-linus-4.11' of git://git.code.sf.net/p/openipmi/linux-ipmi
Pull IPMI updates from Corey Minyard:
"This is a few small fixes to the main IPMI driver, make some things
const, fix typos, etc.
The last patch came in about a week ago, but IMHO it's best to go in
now. It is not for the main driver, it's for the bt-bmc driver, which
runs on the managment controller side, not on the host side, so the
scope is limited and the change is necessary"
* tag 'for-linus-4.11' of git://git.code.sf.net/p/openipmi/linux-ipmi:
ipmi: bt-bmc: Use a regmap for register access
char: ipmi: constify ipmi_smi_handlers structures
acpi:ipmi: Make IPMI user handler const
ipmi: make ipmi_usr_hndl const
Documentation: Fix a typo in IPMI.txt.
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/IPMI.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/IPMI.txt b/Documentation/IPMI.txt index 72292308d0f5..6962cab997ef 100644 --- a/Documentation/IPMI.txt +++ b/Documentation/IPMI.txt @@ -257,7 +257,7 @@ and tell you when they come and go. Creating the User -To user the message handler, you must first create a user using +To use the message handler, you must first create a user using ipmi_create_user. The interface number specifies which SMI you want to connect to, and you must supply callback functions to be called when data comes in. The callback function can run at interrupt level, |