Commit b4482a4b authored by Al Viro's avatar Al Viro Committed by Linus Torvalds

more trivial signedness fixes in drivers

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 64a6f950
...@@ -362,7 +362,7 @@ static unsigned long write_video(const char *buffer, unsigned long count) ...@@ -362,7 +362,7 @@ static unsigned long write_video(const char *buffer, unsigned long count)
int crt_out = -1; int crt_out = -1;
int tv_out = -1; int tv_out = -1;
u32 hci_result; u32 hci_result;
int video_out; u32 video_out;
/* scan expression. Multiple expressions may be delimited with ; /* scan expression. Multiple expressions may be delimited with ;
* *
......
...@@ -1122,7 +1122,7 @@ static void __devinit piix_init_sata_map(struct pci_dev *pdev, ...@@ -1122,7 +1122,7 @@ static void __devinit piix_init_sata_map(struct pci_dev *pdev,
const struct piix_map_db *map_db) const struct piix_map_db *map_db)
{ {
struct piix_host_priv *hpriv = pinfo[0].private_data; struct piix_host_priv *hpriv = pinfo[0].private_data;
const unsigned int *map; const int *map;
int i, invalid_map = 0; int i, invalid_map = 0;
u8 map_value; u8 map_value;
......
...@@ -505,7 +505,7 @@ static int svia_init_one (struct pci_dev *pdev, const struct pci_device_id *ent) ...@@ -505,7 +505,7 @@ static int svia_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
int rc; int rc;
struct ata_host *host; struct ata_host *host;
int board_id = (int) ent->driver_data; int board_id = (int) ent->driver_data;
const int *bar_sizes; const unsigned *bar_sizes;
if (!printed_version++) if (!printed_version++)
dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n"); dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
......
...@@ -1295,7 +1295,7 @@ static const struct atmdev_ops ops = { ...@@ -1295,7 +1295,7 @@ static const struct atmdev_ops ops = {
static void __devinit undocumented_pci_fix (struct pci_dev *pdev) static void __devinit undocumented_pci_fix (struct pci_dev *pdev)
{ {
int tint; u32 tint;
/* The Windows driver says: */ /* The Windows driver says: */
/* Switch off FireStream Retry Limit Threshold /* Switch off FireStream Retry Limit Threshold
......
...@@ -3101,7 +3101,7 @@ static void cciss_getgeometry(int cntl_num) ...@@ -3101,7 +3101,7 @@ static void cciss_getgeometry(int cntl_num)
int i; int i;
int listlength = 0; int listlength = 0;
__u32 lunid = 0; __u32 lunid = 0;
int block_size; unsigned block_size;
sector_t total_size; sector_t total_size;
ld_buff = kzalloc(sizeof(ReportLunData_struct), GFP_KERNEL); ld_buff = kzalloc(sizeof(ReportLunData_struct), GFP_KERNEL);
......
...@@ -950,7 +950,7 @@ static void hidinput_configure_usage(struct hid_input *hidinput, struct hid_fiel ...@@ -950,7 +950,7 @@ static void hidinput_configure_usage(struct hid_input *hidinput, struct hid_fiel
void hidinput_hid_event(struct hid_device *hid, struct hid_field *field, struct hid_usage *usage, __s32 value) void hidinput_hid_event(struct hid_device *hid, struct hid_field *field, struct hid_usage *usage, __s32 value)
{ {
struct input_dev *input; struct input_dev *input;
int *quirks = &hid->quirks; unsigned *quirks = &hid->quirks;
if (!field->hidinput) if (!field->hidinput)
return; return;
......
...@@ -1019,7 +1019,8 @@ hfc_dbusy_timer(struct IsdnCardState *cs) ...@@ -1019,7 +1019,8 @@ hfc_dbusy_timer(struct IsdnCardState *cs)
static unsigned int static unsigned int
*init_send_hfcd(int cnt) *init_send_hfcd(int cnt)
{ {
int i, *send; int i;
unsigned *send;
if (!(send = kmalloc(cnt * sizeof(unsigned int), GFP_ATOMIC))) { if (!(send = kmalloc(cnt * sizeof(unsigned int), GFP_ATOMIC))) {
printk(KERN_WARNING printk(KERN_WARNING
......
...@@ -151,7 +151,7 @@ NETjet_S_card_msg(struct IsdnCardState *cs, int mt, void *arg) ...@@ -151,7 +151,7 @@ NETjet_S_card_msg(struct IsdnCardState *cs, int mt, void *arg)
static int __devinit njs_pci_probe(struct pci_dev *dev_netjet, static int __devinit njs_pci_probe(struct pci_dev *dev_netjet,
struct IsdnCardState *cs) struct IsdnCardState *cs)
{ {
int cfg; u32 cfg;
if (pci_enable_device(dev_netjet)) if (pci_enable_device(dev_netjet))
return(0); return(0);
......
...@@ -292,6 +292,7 @@ static void tulip_up(struct net_device *dev) ...@@ -292,6 +292,7 @@ static void tulip_up(struct net_device *dev)
struct tulip_private *tp = netdev_priv(dev); struct tulip_private *tp = netdev_priv(dev);
void __iomem *ioaddr = tp->base_addr; void __iomem *ioaddr = tp->base_addr;
int next_tick = 3*HZ; int next_tick = 3*HZ;
u32 reg;
int i; int i;
#ifdef CONFIG_TULIP_NAPI #ifdef CONFIG_TULIP_NAPI
...@@ -307,14 +308,14 @@ static void tulip_up(struct net_device *dev) ...@@ -307,14 +308,14 @@ static void tulip_up(struct net_device *dev)
/* Reset the chip, holding bit 0 set at least 50 PCI cycles. */ /* Reset the chip, holding bit 0 set at least 50 PCI cycles. */
iowrite32(0x00000001, ioaddr + CSR0); iowrite32(0x00000001, ioaddr + CSR0);
pci_read_config_dword(tp->pdev, PCI_COMMAND, &i); /* flush write */ pci_read_config_dword(tp->pdev, PCI_COMMAND, &reg); /* flush write */
udelay(100); udelay(100);
/* Deassert reset. /* Deassert reset.
Wait the specified 50 PCI cycles after a reset by initializing Wait the specified 50 PCI cycles after a reset by initializing
Tx and Rx queues and the address filter list. */ Tx and Rx queues and the address filter list. */
iowrite32(tp->csr0, ioaddr + CSR0); iowrite32(tp->csr0, ioaddr + CSR0);
pci_read_config_dword(tp->pdev, PCI_COMMAND, &i); /* flush write */ pci_read_config_dword(tp->pdev, PCI_COMMAND, &reg); /* flush write */
udelay(100); udelay(100);
if (tulip_debug > 1) if (tulip_debug > 1)
......
...@@ -658,7 +658,7 @@ int ...@@ -658,7 +658,7 @@ int
pci_restore_state(struct pci_dev *dev) pci_restore_state(struct pci_dev *dev)
{ {
int i; int i;
int val; u32 val;
/* PCI Express register must be restored first */ /* PCI Express register must be restored first */
pci_restore_pcie_state(dev); pci_restore_pcie_state(dev);
......
...@@ -2876,7 +2876,7 @@ static int create_fixed_stream_quirk(struct snd_usb_audio *chip, ...@@ -2876,7 +2876,7 @@ static int create_fixed_stream_quirk(struct snd_usb_audio *chip,
struct audioformat *fp; struct audioformat *fp;
struct usb_host_interface *alts; struct usb_host_interface *alts;
int stream, err; int stream, err;
int *rate_table = NULL; unsigned *rate_table = NULL;
fp = kmemdup(quirk->data, sizeof(*fp), GFP_KERNEL); fp = kmemdup(quirk->data, sizeof(*fp), GFP_KERNEL);
if (! fp) { if (! fp) {
......
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