On Mon, May 04, 2009 at 05:51:56PM -0700, David Daney wrote: > David VomLehn wrote: >> Adds the Cisco PowerTV platform to the configuration and Make files so >> that we can build a kernel for it. >> >> Signed-off-by: David VomLehn <dvomlehn@xxxxxxxxx> >> --- >> arch/mips/Kconfig | 30 + >> arch/mips/Makefile | 8 + >> arch/mips/configs/powertv_defconfig | 1484 +++++++++++++++++++++++++++++++++++ >> 3 files changed, 1522 insertions(+), 0 deletions(-) >> >> diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig >> index 99f7b6d..b23ec4c 100644 >> --- a/arch/mips/Kconfig >> +++ b/arch/mips/Kconfig > [...] >> +# >> +# The flag for POWERTV clock source. >> +# >> +config CEVT_POWERTV >> + bool >> + >> config CEVT_SB1250 >> bool >> @@ -742,6 +766,12 @@ config CSRC_R4K >> select CSRC_R4K_LIB >> bool >> +# >> +# The flag for POWERTV clock event. >> +# >> +config CSRC_POWERTV >> + bool >> + >> config CSRC_SB1250 >> bool >> > > Could/should CEVT_POWERTV and CSRC_POWERTV be either eliminated or moved > to your processor specific directory? That is where the corresponding > code lives. Yes, these can be moved. I've got to dig a bit to see about eliminating them. > David Daney