|
@@ -343,7 +343,7 @@ static int ttusb_dec_get_stb_state (struct ttusb_dec *dec, unsigned int *mode,
|
|
|
u8 c[COMMAND_PACKET_SIZE];
|
|
|
int c_length;
|
|
|
int result;
|
|
|
- unsigned int tmp;
|
|
|
+ __be32 tmp;
|
|
|
|
|
|
dprintk("%s\n", __func__);
|
|
|
|
|
@@ -398,9 +398,9 @@ static void ttusb_dec_set_pids(struct ttusb_dec *dec)
|
|
|
0x00, 0x00, 0xff, 0xff,
|
|
|
0xff, 0xff, 0xff, 0xff };
|
|
|
|
|
|
- u16 pcr = htons(dec->pid[DMX_PES_PCR]);
|
|
|
- u16 audio = htons(dec->pid[DMX_PES_AUDIO]);
|
|
|
- u16 video = htons(dec->pid[DMX_PES_VIDEO]);
|
|
|
+ __be16 pcr = htons(dec->pid[DMX_PES_PCR]);
|
|
|
+ __be16 audio = htons(dec->pid[DMX_PES_AUDIO]);
|
|
|
+ __be16 video = htons(dec->pid[DMX_PES_VIDEO]);
|
|
|
|
|
|
dprintk("%s\n", __func__);
|
|
|
|
|
@@ -435,7 +435,7 @@ static void ttusb_dec_process_pva(struct ttusb_dec *dec, u8 *pva, int length)
|
|
|
case 0x01: { /* VideoStream */
|
|
|
int prebytes = pva[5] & 0x03;
|
|
|
int postbytes = (pva[5] & 0x0c) >> 2;
|
|
|
- u16 v_pes_payload_length;
|
|
|
+ __be16 v_pes_payload_length;
|
|
|
|
|
|
if (output_pva) {
|
|
|
dec->video_filter->feed->cb.ts(pva, length, NULL, 0,
|
|
@@ -1006,7 +1006,7 @@ static int ttusb_dec_start_sec_feed(struct dvb_demux_feed *dvbdmxfeed)
|
|
|
0x00, 0x00, 0x00, 0x00,
|
|
|
0x00, 0x00, 0x00, 0x00,
|
|
|
0x00 };
|
|
|
- u16 pid;
|
|
|
+ __be16 pid;
|
|
|
u8 c[COMMAND_PACKET_SIZE];
|
|
|
int c_length;
|
|
|
int result;
|
|
@@ -1278,9 +1278,10 @@ static int ttusb_dec_boot_dsp(struct ttusb_dec *dec)
|
|
|
u8 *firmware = NULL;
|
|
|
size_t firmware_size = 0;
|
|
|
u16 firmware_csum = 0;
|
|
|
- u16 firmware_csum_ns;
|
|
|
- u32 firmware_size_nl;
|
|
|
- u32 crc32_csum, crc32_check, tmp;
|
|
|
+ __be16 firmware_csum_ns;
|
|
|
+ __be32 firmware_size_nl;
|
|
|
+ u32 crc32_csum, crc32_check;
|
|
|
+ __be32 tmp;
|
|
|
const struct firmware *fw_entry = NULL;
|
|
|
|
|
|
dprintk("%s\n", __func__);
|
|
@@ -1306,7 +1307,7 @@ static int ttusb_dec_boot_dsp(struct ttusb_dec *dec)
|
|
|
valid. */
|
|
|
crc32_csum = crc32(~0L, firmware, 56) ^ ~0L;
|
|
|
memcpy(&tmp, &firmware[56], 4);
|
|
|
- crc32_check = htonl(tmp);
|
|
|
+ crc32_check = ntohl(tmp);
|
|
|
if (crc32_csum != crc32_check) {
|
|
|
printk("%s: crc32 check of DSP code failed (calculated "
|
|
|
"0x%08x != 0x%08x in file), file invalid.\n",
|
|
@@ -1627,7 +1628,7 @@ static int ttusb_dec_probe(struct usb_interface *intf,
|
|
|
|
|
|
usb_set_intfdata(intf, (void *)dec);
|
|
|
|
|
|
- switch (le16_to_cpu(id->idProduct)) {
|
|
|
+ switch (id->idProduct) {
|
|
|
case 0x1006:
|
|
|
ttusb_dec_set_model(dec, TTUSB_DEC3000S);
|
|
|
break;
|
|
@@ -1652,7 +1653,7 @@ static int ttusb_dec_probe(struct usb_interface *intf,
|
|
|
ttusb_dec_init_dvb(dec);
|
|
|
|
|
|
dec->adapter.priv = dec;
|
|
|
- switch (le16_to_cpu(id->idProduct)) {
|
|
|
+ switch (id->idProduct) {
|
|
|
case 0x1006:
|
|
|
dec->fe = ttusbdecfe_dvbs_attach(&fe_config);
|
|
|
break;
|