diff options
author | Ben Hutchings <bhutchings@solarflare.com> | 2008-05-16 16:15:29 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2008-05-22 05:59:26 -0400 |
commit | 2c118e0f6b7f3b8021df3c80c80c0545402f38b4 (patch) | |
tree | ce526b052a925b87708dd885763ae0567933005a | |
parent | f7f13b0b9253e21557ad090144a44f20860332f1 (diff) |
sfc: Removed unncesssary UL suffixes on 0 literals
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
-rw-r--r-- | drivers/net/sfc/efx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/sfc/efx.c b/drivers/net/sfc/efx.c index 1a065fcadc50..3494f4cd314e 100644 --- a/drivers/net/sfc/efx.c +++ b/drivers/net/sfc/efx.c | |||
@@ -793,7 +793,7 @@ static int efx_init_io(struct efx_nic *efx) | |||
793 | fail4: | 793 | fail4: |
794 | release_mem_region(efx->membase_phys, efx->type->mem_map_size); | 794 | release_mem_region(efx->membase_phys, efx->type->mem_map_size); |
795 | fail3: | 795 | fail3: |
796 | efx->membase_phys = 0UL; | 796 | efx->membase_phys = 0; |
797 | fail2: | 797 | fail2: |
798 | pci_disable_device(efx->pci_dev); | 798 | pci_disable_device(efx->pci_dev); |
799 | fail1: | 799 | fail1: |
@@ -811,7 +811,7 @@ static void efx_fini_io(struct efx_nic *efx) | |||
811 | 811 | ||
812 | if (efx->membase_phys) { | 812 | if (efx->membase_phys) { |
813 | pci_release_region(efx->pci_dev, efx->type->mem_bar); | 813 | pci_release_region(efx->pci_dev, efx->type->mem_bar); |
814 | efx->membase_phys = 0UL; | 814 | efx->membase_phys = 0; |
815 | } | 815 | } |
816 | 816 | ||
817 | pci_disable_device(efx->pci_dev); | 817 | pci_disable_device(efx->pci_dev); |