diff options
author | Scott James Remnant <[email protected]> | 2008-10-29 14:01:18 -0700 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2008-10-30 11:38:47 -0700 |
commit | 6c89161b10f5771ee0b51ada0fce0e8835e72ade (patch) | |
tree | bb5bd8bbfc7e1b3f77503aa4a5a38763595f03d7 | |
parent | 120a37470c2831fea49fdebaceb5a7039f700ce6 (diff) |
ipmi: add MODULE_ALIAS to load ipmi_devintf with ipmi_si
The ipmi_devintf module contains the userspace interface for IPMI devices,
yet will not be loaded automatically with a system interface handler
driver.
Add a MODULE_ALIAS for the "platform:ipmi_si" MODALIAS exported by the
ipmi_si driver, so that userspace knows of the recommendation.
Signed-off-by: Scott James Remnant <[email protected]>
Cc: Tim Gardner <[email protected]>
Cc: Corey Minyard <[email protected]>
Cc: <[email protected]> [2.6.27.x, maybe earlier?]
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r-- | drivers/char/ipmi/ipmi_devintf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/char/ipmi/ipmi_devintf.c b/drivers/char/ipmi/ipmi_devintf.c index 835a33c8d5f5..1d7b429f7ffa 100644 --- a/drivers/char/ipmi/ipmi_devintf.c +++ b/drivers/char/ipmi/ipmi_devintf.c @@ -957,3 +957,4 @@ module_exit(cleanup_ipmi); MODULE_LICENSE("GPL"); MODULE_AUTHOR("Corey Minyard <[email protected]>"); MODULE_DESCRIPTION("Linux device interface for the IPMI message handler."); +MODULE_ALIAS("platform:ipmi_si"); |