Maciej W. Rozycki wrote: > On Tue, 12 Aug 2003, Thiemo Seufer wrote: > > > If the intention is to use mfc0 for 32bit kernels and dmfc0 for 64bit, > > the check should probably be > > > > #ifdef __mips64 > > # define MFC0 dmfc0 > > # define MTC0 dmtc0 > > #else > > # define MFC0 mfc0 > > # define MTC0 mtc0 > > #endif > > I'd go for CONFIG_MIPS64 here. This would work as well, but I prefer compiler intrinsic defines over custom configury. Thiemo