Commit 2c118e0f authored by Ben Hutchings's avatar Ben Hutchings Committed by Jeff Garzik

sfc: Removed unncesssary UL suffixes on 0 literals

Signed-off-by: default avatarBen Hutchings <bhutchings@solarflare.com>
Signed-off-by: default avatarJeff Garzik <jgarzik@redhat.com>
parent f7f13b0b
...@@ -793,7 +793,7 @@ static int efx_init_io(struct efx_nic *efx) ...@@ -793,7 +793,7 @@ static int efx_init_io(struct efx_nic *efx)
fail4: fail4:
release_mem_region(efx->membase_phys, efx->type->mem_map_size); release_mem_region(efx->membase_phys, efx->type->mem_map_size);
fail3: fail3:
efx->membase_phys = 0UL; efx->membase_phys = 0;
fail2: fail2:
pci_disable_device(efx->pci_dev); pci_disable_device(efx->pci_dev);
fail1: fail1:
...@@ -811,7 +811,7 @@ static void efx_fini_io(struct efx_nic *efx) ...@@ -811,7 +811,7 @@ static void efx_fini_io(struct efx_nic *efx)
if (efx->membase_phys) { if (efx->membase_phys) {
pci_release_region(efx->pci_dev, efx->type->mem_bar); pci_release_region(efx->pci_dev, efx->type->mem_bar);
efx->membase_phys = 0UL; efx->membase_phys = 0;
} }
pci_disable_device(efx->pci_dev); pci_disable_device(efx->pci_dev);
......
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