Using the ptr defines broke the powerpc build - convert set_mmfsa to the same

convention as the rest of openfirm.c
This commit is contained in:
Kip Macy 2006-10-11 02:52:46 +00:00
parent b0c344cc5e
commit e8bc49d761
1 changed files with 2 additions and 2 deletions

View File

@ -842,8 +842,8 @@ OF_set_mmfsa_traptable(void *tba_addr, uint64_t mmfsa_ra)
0,
};
args.tba_addr = p1275_ptr2cell(tba_addr);
args.mmfsa_ra = p1275_ptr2cell(mmfsa_ra);
args.tba_addr = (cell_t)tba_addr;
args.mmfsa_ra = (cell_t)mmfsa_ra;
openfirmware(&args);
}