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>
This commit is contained in:
parent
874e52086f
commit
0a0d412abe
1 changed files with 2 additions and 2 deletions
|
@ -221,13 +221,13 @@ pci_hp_diva_setup(struct serial_private *priv,
|
||||||
*/
|
*/
|
||||||
static int pci_inteli960ni_init(struct pci_dev *dev)
|
static int pci_inteli960ni_init(struct pci_dev *dev)
|
||||||
{
|
{
|
||||||
unsigned long oldval;
|
u32 oldval;
|
||||||
|
|
||||||
if (!(dev->subsystem_device & 0x1000))
|
if (!(dev->subsystem_device & 0x1000))
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
||||||
/* is firmware started? */
|
/* is firmware started? */
|
||||||
pci_read_config_dword(dev, 0x44, (void *)&oldval);
|
pci_read_config_dword(dev, 0x44, &oldval);
|
||||||
if (oldval == 0x00001000L) { /* RESET value */
|
if (oldval == 0x00001000L) { /* RESET value */
|
||||||
dev_dbg(&dev->dev, "Local i960 firmware missing\n");
|
dev_dbg(&dev->dev, "Local i960 firmware missing\n");
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
Loading…
Add table
Reference in a new issue