On Wed, Jan 03, 2001 at 04:34:45AM -0900, Ethan Benson wrote: > On Tue, Jan 02, 2001 at 05:14:33PM -0800, Peter Abrahamsen wrote: > > Hullo, > > > > I recently installed a Newer tech (gack!) G3 upgrade card, and now I get the > > following message periodically: > > > > pmac_set_rtc_time: got 3 byte reply > > > > Does anyone know what this means, or how to make it go away? > > hmm the only time i have seen this is running hwclock --systohc --utc > > (which works now with CONFIG_PPC_RTC btw)
It's a harmless error. If you compile your own kernel, edit arch/ppc/kernel/pmac_time.c, and in pmac_set_rtc_time, look for something like case: CUDA .... //if(req.reply_len != 7) printk("pmac_set_rtc_time: got %d byte reply\n"); ... And uncomment and change the if(..) to if(req.reply_len != 3 && req.reply_len != 7) This is also off the top of my head, so I know it's not totally correct. -- Tom Rini (TR1265) http://gate.crashing.org/~trini/