summaryrefslogtreecommitdiffstats
path: root/drivers/tty/serial
diff options
context:
space:
mode:
authorHeikki Krogerus2015-01-12 12:47:46 +0100
committerGreg Kroah-Hartman2015-02-02 19:11:25 +0100
commit0a0d412abe473c37ddec8d3f6c0b84c58f1bb061 (patch)
tree585bccc7199e94c2794ee2c9e286b71f31345c67 /drivers/tty/serial
parentx86, mrst: remove Moorestown specific serial drivers (diff)
downloadkernel-qcow2-linux-0a0d412abe473c37ddec8d3f6c0b84c58f1bb061.tar.gz
kernel-qcow2-linux-0a0d412abe473c37ddec8d3f6c0b84c58f1bb061.tar.xz
kernel-qcow2-linux-0a0d412abe473c37ddec8d3f6c0b84c58f1bb061.zip
serial: 8250_pci: remove one useless explicit type conversion
Signed-off-by: Heikki Krogerus <heikki.krogerus@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/serial')
-rw-r--r--drivers/tty/serial/8250/8250_pci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/tty/serial/8250/8250_pci.c b/drivers/tty/serial/8250/8250_pci.c
index d1f8dc6aabcb..daf2c82984e9 100644
--- a/drivers/tty/serial/8250/8250_pci.c
+++ b/drivers/tty/serial/8250/8250_pci.c
@@ -221,13 +221,13 @@ pci_hp_diva_setup(struct serial_private *priv,
*/
static int pci_inteli960ni_init(struct pci_dev *dev)
{
- unsigned long oldval;
+ u32 oldval;
if (!(dev->subsystem_device & 0x1000))
return -ENODEV;
/* is firmware started? */
- pci_read_config_dword(dev, 0x44, (void *)&oldval);
+ pci_read_config_dword(dev, 0x44, &oldval);
if (oldval == 0x00001000L) { /* RESET value */
dev_dbg(&dev->dev, "Local i960 firmware missing\n");
return -ENODEV;