Add a missing open paren to a macro that's been broken (and apparently
unused) since rev 1.1 so it is at least correct. Submitted by: Maxime Henrion <mux@qualys.com>
This commit is contained in:
parent
c3d15322a1
commit
9b37da1390
@ -188,7 +188,7 @@ struct region_descriptor {
|
||||
#define SEGEX_IDT 0x02 /* interrupt descriptor table */
|
||||
#define SEGEX_TI 0x04 /* local descriptor table */
|
||||
/* other bits are affected descriptor index */
|
||||
#define SEGEX_IDX(s) ((s)>>3)&0x1fff)
|
||||
#define SEGEX_IDX(s) (((s)>>3)&0x1fff)
|
||||
|
||||
/*
|
||||
* Size of IDT table
|
||||
|
@ -188,7 +188,7 @@ struct region_descriptor {
|
||||
#define SEGEX_IDT 0x02 /* interrupt descriptor table */
|
||||
#define SEGEX_TI 0x04 /* local descriptor table */
|
||||
/* other bits are affected descriptor index */
|
||||
#define SEGEX_IDX(s) ((s)>>3)&0x1fff)
|
||||
#define SEGEX_IDX(s) (((s)>>3)&0x1fff)
|
||||
|
||||
/*
|
||||
* Size of IDT table
|
||||
|
Loading…
x
Reference in New Issue
Block a user