[PATCH] Calgary IOMMU: save a bit of space in bus_info

Make translation_disabled a uchar rather than an int

Signed-off-by: Muli Ben-Yehuda <muli@il.ibm.com>
Signed-off-by: Jon Mason <jdmason@us.ibm.com>
Signed-off-by: Andi Kleen <ak@suse.de>
This commit is contained in:
Muli Ben-Yehuda 2006-09-26 10:52:31 +02:00 committed by Andi Kleen
parent a4fc520a0f
commit 0577f148b5
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ static int calgary_detected __read_mostly = 0;
struct calgary_bus_info {
void *tce_space;
int translation_disabled;
unsigned char translation_disabled;
signed char phbid;
};