Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 30 Dec 2006 20:00:54 +0100
From:      Torfinn Ingolfsen <torfinn.ingolfsen@broadpark.no>
To:        freebsd-multimedia@freebsd.org
Subject:   Re: MythTV port - status report
Message-ID:  <20061230200054.e23631e5.torfinn.ingolfsen@broadpark.no>
In-Reply-To: <20061230184451.8b1fa4df.torfinn.ingolfsen@broadpark.no>
References:  <20061224230155.fc0a6c6a.torfinn.ingolfsen@broadpark.no> <c39ec84c0612241431n6f3e66e7n9a1a38f4258097e3@mail.gmail.com> <20061225001321.5dfb2975.torfinn.ingolfsen@broadpark.no> <d5eb95fc0612280230u66b81742od4f4435490b1bf5c@mail.gmail.com> <20061228145909.bbb6d193.torfinn.ingolfsen@broadpark.no> <d5eb95fc0612281435k1357d907p99adad9912313368@mail.gmail.com> <c39ec84c0612281449q6e62ac56pb54d42cd790fadd5@mail.gmail.com> <d5eb95fc0612281453n7cd2de31t92ca7a88ed67599b@mail.gmail.com> <c39ec84c0612291406v60c6c8edgda86a19c3f4c5806@mail.gmail.com> <20061230184451.8b1fa4df.torfinn.ingolfsen@broadpark.no>

next in thread | previous in thread | raw e-mail | index | archive | help

[-- Attachment #1 --]
Next try - I found and fixed some obvoius errors, patch attached.

However, I don't get very much further:
In file included from /usr/ports/multimedia/pvrxxx/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:83:
@/dev/pci/pcivar.h: In function `pci_get_ether':
@/dev/pci/pcivar.h:217: warning: cast to pointer from integer of different size
@/dev/pci/pcivar.h: In function `pci_set_ether':
@/dev/pci/pcivar.h:217: warning: cast from pointer to integer of different size
/usr/ports/multimedia/pvrxxx/work/modules/cxm/cxm/../../../dev/cxm/cxm.c: In function `cxm_write_ivar':
/usr/ports/multimedia/pvrxxx/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:2409: warning: cast to pointer from integer of different size
*** Error code 1

Stop in /usr/ports/multimedia/pvrxxx/work/modules/cxm/cxm.
*** Error code 1

Stop in /usr/ports/multimedia/pvrxxx/work/modules/cxm.
*** Error code 1

Stop in /usr/ports/multimedia/pvrxxx.

That was all from me for today.
-- 
Regards,
Torfinn Ingolfsen,
Norway


[-- Attachment #2 --]
--- dev/cxm/cxm.c.org	Sat Dec 30 19:47:11 2006
+++ dev/cxm/cxm.c	Sat Dec 30 19:48:00 2006
@@ -750,7 +750,7 @@
 	/* Download the decoder firmware */
 	if (sc->type == cxm_iTVC15_type) {
 #if __FreeBSD_version >= 601000
-		struct firmware *cxm_encfw;
+		struct firmware *cxm_decfw;
 		const u_int32_t *cxm_dec_fw;
 
 		cxm_decfw = firmware_get("cxm_decfw");
@@ -1722,7 +1722,7 @@
 static int
 cxm_encoder_wait_for_lock( struct cxm_softc *sc )
 {
-	/* int muted; */
+	int muted;
 	int locked;
 	int result;
 

Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20061230200054.e23631e5.torfinn.ingolfsen>