Commit f721ad7a authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

Staging: dt3155: fix build warnings

This fixes the build warnings in the dt3155 driver

Cc: Scott Smedley <ss@aao.gov.au>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent dee86e8c
...@@ -538,8 +538,11 @@ static int dt3155_ioctl ( ...@@ -538,8 +538,11 @@ static int dt3155_ioctl (
{ {
printk("DT3155: invalid IOCTL(0x%x)\n",cmd); printk("DT3155: invalid IOCTL(0x%x)\n",cmd);
printk("DT3155: Valid commands (0x%x), (0x%x), (0x%x), (0x%x), (0x%x)\n", printk("DT3155: Valid commands (0x%x), (0x%x), (0x%x), (0x%x), (0x%x)\n",
DT3155_GET_CONFIG, DT3155_SET_CONFIG, (unsigned int)DT3155_GET_CONFIG,
DT3155_START, DT3155_STOP, DT3155_FLUSH); (unsigned int)DT3155_SET_CONFIG,
(unsigned int)DT3155_START,
(unsigned int)DT3155_STOP,
(unsigned int)DT3155_FLUSH);
return -EINVAL; return -EINVAL;
} }
...@@ -624,7 +627,8 @@ static int dt3155_ioctl ( ...@@ -624,7 +627,8 @@ static int dt3155_ioctl (
{ {
printk("DT3155: invalid IOCTL(0x%x)\n",cmd); printk("DT3155: invalid IOCTL(0x%x)\n",cmd);
printk("DT3155: Valid commands (0x%x), (0x%x), (0x%x), (0x%x), (0x%x)\n", printk("DT3155: Valid commands (0x%x), (0x%x), (0x%x), (0x%x), (0x%x)\n",
DT3155_GET_CONFIG, DT3155_SET_CONFIG, (unsigned int)DT3155_GET_CONFIG,
(unsigned int)DT3155_SET_CONFIG,
DT3155_START, DT3155_STOP, DT3155_FLUSH); DT3155_START, DT3155_STOP, DT3155_FLUSH);
return -ENOSYS; return -ENOSYS;
} }
...@@ -754,11 +758,8 @@ static int dt3155_close( struct inode *inode, struct file *filep) ...@@ -754,11 +758,8 @@ static int dt3155_close( struct inode *inode, struct file *filep)
* read() * read()
* *
*****************************************************/ *****************************************************/
static int dt3155_read ( static ssize_t dt3155_read(struct file *filep, char __user *buf,
struct file *filep, size_t count, loff_t *ppos)
char *buf,
size_t count,
loff_t *ppos)
{ {
/* which device are we reading from? */ /* which device are we reading from? */
int minor = MINOR(filep->f_dentry->d_inode->i_rdev); int minor = MINOR(filep->f_dentry->d_inode->i_rdev);
...@@ -911,8 +912,8 @@ static int find_PCI (void) ...@@ -911,8 +912,8 @@ static int find_PCI (void)
* can access it. */ * can access it. */
dt3155_lbase[ pci_index - 1 ] = ioremap(base,PCI_PAGE_SIZE); dt3155_lbase[ pci_index - 1 ] = ioremap(base,PCI_PAGE_SIZE);
dt3155_status[ pci_index - 1 ].reg_addr = base; dt3155_status[ pci_index - 1 ].reg_addr = base;
DT_3155_DEBUG_MSG("DT3155: New logical address is x%x \n", DT_3155_DEBUG_MSG("DT3155: New logical address is %p \n",
(u_int)dt3155_lbase[pci_index-1]); dt3155_lbase[pci_index-1]);
if ( !dt3155_lbase[pci_index-1] ) if ( !dt3155_lbase[pci_index-1] )
{ {
printk("DT3155: Unable to remap control registers\n"); printk("DT3155: Unable to remap control registers\n");
...@@ -929,10 +930,10 @@ static int find_PCI (void) ...@@ -929,10 +930,10 @@ static int find_PCI (void)
dt3155_status[ pci_index-1 ].irq = irq; dt3155_status[ pci_index-1 ].irq = irq;
/* Set flag: kth device found! */ /* Set flag: kth device found! */
dt3155_status[ pci_index-1 ].device_installed = 1; dt3155_status[ pci_index-1 ].device_installed = 1;
printk("DT3155: Installing device %d w/irq %d and address 0x%x\n", printk("DT3155: Installing device %d w/irq %d and address %p\n",
pci_index, pci_index,
(u_int)dt3155_status[pci_index-1].irq, (u_int)dt3155_status[pci_index-1].irq,
(u_int)dt3155_lbase[pci_index-1]); dt3155_lbase[pci_index-1]);
} }
ndevices = pci_index; ndevices = pci_index;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment