forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ipmi_si: Rename function to add smi, make it global
Getting ready for moving the platform-specific stuff into their own files. Signed-off-by: Corey Minyard <[email protected]>
- Loading branch information
Showing
2 changed files
with
28 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/* | ||
* ipmi_si.h | ||
* | ||
* Interface from the device-specific interfaces (OF, DMI, ACPI, PCI, | ||
* etc) to the base ipmi system interface code. | ||
*/ | ||
|
||
#include "ipmi_si_sm.h" | ||
|
||
#define IPMI_IO_ADDR_SPACE 0 | ||
#define IPMI_MEM_ADDR_SPACE 1 | ||
|
||
#define DEFAULT_REGSPACING 1 | ||
#define DEFAULT_REGSIZE 1 | ||
|
||
struct smi_info; | ||
|
||
int ipmi_si_add_smi(struct smi_info *info); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters