From owner-freebsd-multimedia@FreeBSD.ORG Thu Apr 13 15:46:28 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E83816A400 for ; Thu, 13 Apr 2006 15:46:28 +0000 (UTC) (envelope-from joe@netmusician.org) Received: from netmusician.org (netmusician.org [209.67.223.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F56B43D45 for ; Thu, 13 Apr 2006 15:46:28 +0000 (GMT) (envelope-from joe@netmusician.org) Received: from localhost (localhost [127.0.0.1]) by netmusician.org (Postfix) with ESMTP id 9E40D7309A; Thu, 13 Apr 2006 11:46:27 -0400 (EDT) Received: from netmusician.org ([127.0.0.1]) by localhost (netmusician.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05424-09; Thu, 13 Apr 2006 11:46:26 -0400 (EDT) Received: from [156.56.14.132] (156-56-14-132.dhcp-bl.indiana.edu [156.56.14.132]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by netmusician.org (Postfix) with ESMTP id B20EC73099; Thu, 13 Apr 2006 11:46:26 -0400 (EDT) In-Reply-To: <443E65EF.5090706@nc.rr.com> References: <05A2D928-BC96-4BE5-8884-B931D8279A5D@netmusician.org> <443E5B87.6000209@nc.rr.com> <3651369F-75B1-43E0-A23F-9FC218C0BA20@netmusician.org> <443E606D.3070206@nc.rr.com> <1F24E4CD-709B-4BF1-8475-9152060593CE@netmusician.org> <443E65EF.5090706@nc.rr.com> Mime-Version: 1.0 (Apple Message framework v749.3) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Joe Auty Date: Thu, 13 Apr 2006 11:46:27 -0400 To: Erin E Conn X-Mailer: Apple Mail (2.749.3) X-Virus-Scanned: by amavisd-new at netmusician.org Cc: freebsd-multimedia@freebsd.org Subject: Re: problem attaching PVR250, error message in log X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Apr 2006 15:46:28 -0000 Okay, I forgot that last night I experimented with installing a kernel without the patch, so I reinstalled the patched kernel... Now I'm getting the following different error message: cxm0: mem 0xe0000000-0xe3ffffff irq 11 at device 9.0 on pci0 cxm_iic0: on cxm0 iicbb0: on cxm_iic0 iicbus0: on iicbb0 master-only cxm0: unknown tuner code 0x63 cxm0: could not initialize tuner iicbus0: detached iicbb0: detached cxm_iic0: detached device_attach: cxm0 attach returned 6 On Apr 13, 2006, at 10:53 AM, Erin E Conn wrote: > Joe Auty wrote: >> Okay, here is what I did... >> cd /usr/ports/multimedia/pvr250 >> sudo make deinstall >> sudo make clean >> sudo make >> edited work/dev/cxm/cxm_eeprom.c and added the lines: >> case 0x63: >> tuner_type = CXM_TUNER_TCL_2002N_5H; >> break; >> right before: >> case 0x55: /* TCL 2002N-6A */ >> tuner_type = CXM_TUNER_TCL_2002N_6A; >> break; >> sudo make patch-iicbb (I'm assuming this is what you meant, make >> patch on its own does nothing) >> sudo make install >> kldload the kernel... >> Still the same error message.... >> Did I miss something? > > Take out the "break;" The case needs to fall through to the > behavior for the 0x55 case.