diff options
| -rw-r--r-- | drivers/pnp/pnpbios_core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pnp/pnpbios_core.c b/drivers/pnp/pnpbios_core.c index 6b8f1dde68d8..f42c6ecad80c 100644 --- a/drivers/pnp/pnpbios_core.c +++ b/drivers/pnp/pnpbios_core.c @@ -126,11 +126,11 @@ __asm__( #define Q_SET_SEL(cpu, selname, address, size) \ set_base(cpu_gdt_table[cpu][(selname) >> 3], __va((u32)(address))); \ -_set_limit(&cpu_gdt_table[cpu][(selname) >> 3], size) +set_limit(&cpu_gdt_table[cpu][(selname) >> 3], size) #define Q2_SET_SEL(cpu, selname, address, size) \ set_base(cpu_gdt_table[cpu][(selname) >> 3], (u32)(address)); \ -_set_limit((char *)&cpu_gdt_table[cpu][(selname) >> 3], size) +set_limit(&cpu_gdt_table[cpu][(selname) >> 3], size) /* * At some point we want to use this stack frame pointer to unwind |
