Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 17318
b: refs/heads/master
c: e18828e
h: refs/heads/master
v: v3
  • Loading branch information
Hans Verkuil authored and Mauro Carvalho Chehab committed Jan 9, 2006
1 parent 7c09932 commit 019bb8b
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 67f1570a0659abba5efbf55cc986187af61bdd52
refs/heads/master: e18828e43a52fb9a792938840cc32cbb2a9e1a5c
2 changes: 1 addition & 1 deletion trunk/drivers/media/common/saa7146_hlp.c
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ static void saa7146_set_position(struct saa7146_dev *dev, int w_x, int w_y, int

int b_depth = vv->ov_fmt->depth;
int b_bpl = vv->ov_fb.fmt.bytesperline;
u32 base = (u32)vv->ov_fb.base;
u32 base = (u32)(unsigned long)vv->ov_fb.base;

struct saa7146_video_dma vdma1;

Expand Down
8 changes: 4 additions & 4 deletions trunk/drivers/media/dvb/dvb-core/dvb_frontend.c
Original file line number Diff line number Diff line change
Expand Up @@ -788,7 +788,7 @@ static int dvb_frontend_ioctl(struct inode *inode, struct file *file,

case FE_DISHNETWORK_SEND_LEGACY_CMD:
if (fe->ops->dishnetwork_send_legacy_command) {
err = fe->ops->dishnetwork_send_legacy_command(fe, (unsigned int) parg);
err = fe->ops->dishnetwork_send_legacy_command(fe, (unsigned long) parg);
fepriv->state = FESTATE_DISEQC;
fepriv->status = 0;
} else if (fe->ops->set_voltage) {
Expand All @@ -808,7 +808,7 @@ static int dvb_frontend_ioctl(struct inode *inode, struct file *file,
* initialization, so parg is 8 bits and does not
* include the initialization or start bit
*/
unsigned int cmd = ((unsigned int) parg) << 1;
unsigned int cmd = ((unsigned long) parg) << 1;
struct timeval nexttime;
struct timeval tv[10];
int i;
Expand Down Expand Up @@ -855,7 +855,7 @@ static int dvb_frontend_ioctl(struct inode *inode, struct file *file,

case FE_ENABLE_HIGH_LNB_VOLTAGE:
if (fe->ops->enable_high_lnb_voltage)
err = fe->ops->enable_high_lnb_voltage(fe, (int) parg);
err = fe->ops->enable_high_lnb_voltage(fe, (long) parg);
break;

case FE_SET_FRONTEND: {
Expand Down Expand Up @@ -934,7 +934,7 @@ static int dvb_frontend_ioctl(struct inode *inode, struct file *file,
break;

case FE_SET_FRONTEND_TUNE_MODE:
fepriv->tune_mode_flags = (unsigned int) parg;
fepriv->tune_mode_flags = (unsigned long) parg;
break;
};

Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/media/dvb/dvb-core/dvb_net.c
Original file line number Diff line number Diff line change
Expand Up @@ -1296,9 +1296,9 @@ static int dvb_net_do_ioctl(struct inode *inode, struct file *file,

if (!capable(CAP_SYS_ADMIN))
return -EPERM;
if ((unsigned int) parg >= DVB_NET_DEVICES_MAX)
if ((unsigned long) parg >= DVB_NET_DEVICES_MAX)
return -EINVAL;
ret = dvb_net_remove_if(dvbnet, (unsigned int) parg);
ret = dvb_net_remove_if(dvbnet, (unsigned long) parg);
if (!ret)
module_put(dvbdev->adapter->module);
return ret;
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/media/dvb/frontends/bcm3510.c
Original file line number Diff line number Diff line change
Expand Up @@ -623,13 +623,13 @@ static int bcm3510_download_firmware(struct dvb_frontend* fe)
err("could not load firmware (%s): %d",BCM3510_DEFAULT_FIRMWARE,ret);
return ret;
}
deb_info("got firmware: %d\n",fw->size);
deb_info("got firmware: %zd\n",fw->size);

b = fw->data;
for (i = 0; i < fw->size;) {
addr = le16_to_cpu( *( (u16 *)&b[i] ) );
len = le16_to_cpu( *( (u16 *)&b[i+2] ) );
deb_info("firmware chunk, addr: 0x%04x, len: 0x%04x, total length: 0x%04x\n",addr,len,fw->size);
deb_info("firmware chunk, addr: 0x%04x, len: 0x%04x, total length: 0x%04zx\n",addr,len,fw->size);
if ((ret = bcm3510_write_ram(st,addr,&b[i+4],len)) < 0) {
err("firmware download failed: %d\n",ret);
return ret;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/media/dvb/frontends/or51211.c
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ static int or51211_load_firmware (struct dvb_frontend* fe,
u8 tudata[585];
int i;

dprintk("Firmware is %d bytes\n",fw->size);
dprintk("Firmware is %zd bytes\n",fw->size);

/* Get eprom data */
tudata[0] = 17;
Expand Down

0 comments on commit 019bb8b

Please sign in to comment.