From: Jeremy S. <js...@mv...> - 2001-05-12 00:15:11
|
NIIBE Yutaka wrote: > Except irq.c change, the patches are incorporated. > -- > > _______________________________________________ > linuxsh-dev mailing list > lin...@li... > http://lists.sourceforge.net/lists/listinfo/linuxsh-dev We found a negative side-effect in our patch; the change in include/asm-sh/machvec.h mistakenly causes MACH_SE to be turned off for the older Solution Engine configurations. It seems that only the CF Enabler and STNIC support look at that (everything else should work fine). Maybe we should make it a separate machine type sometime in the future, but for the moment I think the following patch takes care of it: diff -Nu machvec.h{.bak,} --- machvec.h.bak Fri May 11 16:39:32 2001 +++ machvec.h Fri May 11 16:41:07 2001 @@ -91,15 +91,11 @@ #define MACH_DREAMCAST (sh_mv.mv_hw_dreamcast) #define MACH_BIGSUR (sh_mv.mv_hw_bigsur) #else -# ifdef CONFIG_SH_SOLUTION_ENGINE +# if defined(CONFIG_SH_SOLUTION_ENGINE) || \ + defined(CONFIG_SH_7751_SOLUTION_ENGINE) # define MACH_SE 1 # else # define MACH_SE 0 -# endif -# ifdef CONFIG_SH_7751_SOLUTION_ENGINE -# define MACH_SE 1 -# else -# define MACH_SE 0 # endif # ifdef CONFIG_SH_HP600 # define MACH_HP600 1 Would you be able to check that in so pulling CVS source? Thanks! --Jeremy Siegel |