two more unsigned!
Signed-off-by: Ronald G. Minnich <rminnich@gmail.com> Acked-by: Ronald G. Minnich <rminnich@gmail.com> git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@409 f3766cd6-281f-0410-b1cd-43a5c92072e9
This commit is contained in:
parent
db20555a2c
commit
782329e647
1 changed files with 2 additions and 2 deletions
|
|
@ -27,7 +27,7 @@ struct msr
|
|||
u32 hi;
|
||||
};
|
||||
|
||||
static inline struct msr rdmsr(unsigned index)
|
||||
static inline struct msr rdmsr(u32 index)
|
||||
{
|
||||
struct msr result;
|
||||
__asm__ __volatile__ (
|
||||
|
|
@ -38,7 +38,7 @@ static inline struct msr rdmsr(unsigned index)
|
|||
return result;
|
||||
}
|
||||
|
||||
static inline void wrmsr(unsigned index, struct msr msr)
|
||||
static inline void wrmsr(u32 index, struct msr msr)
|
||||
{
|
||||
__asm__ __volatile__ (
|
||||
"wrmsr"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue