@@ -38,7 +38,7 @@ static int devm_pci_epc_match(struct device *dev, void *res, void *match_data)
38
38
*/
39
39
void pci_epc_put (struct pci_epc * epc )
40
40
{
41
- if (! epc || IS_ERR (epc ))
41
+ if (IS_ERR_OR_NULL (epc ))
42
42
return ;
43
43
44
44
module_put (epc -> ops -> owner );
@@ -660,7 +660,7 @@ void pci_epc_remove_epf(struct pci_epc *epc, struct pci_epf *epf,
660
660
struct list_head * list ;
661
661
u32 func_no = 0 ;
662
662
663
- if (! epc || IS_ERR (epc ) || !epf )
663
+ if (IS_ERR_OR_NULL (epc ) || !epf )
664
664
return ;
665
665
666
666
if (type == PRIMARY_INTERFACE ) {
@@ -691,7 +691,7 @@ void pci_epc_linkup(struct pci_epc *epc)
691
691
{
692
692
struct pci_epf * epf ;
693
693
694
- if (! epc || IS_ERR (epc ))
694
+ if (IS_ERR_OR_NULL (epc ))
695
695
return ;
696
696
697
697
mutex_lock (& epc -> list_lock );
@@ -717,7 +717,7 @@ void pci_epc_linkdown(struct pci_epc *epc)
717
717
{
718
718
struct pci_epf * epf ;
719
719
720
- if (! epc || IS_ERR (epc ))
720
+ if (IS_ERR_OR_NULL (epc ))
721
721
return ;
722
722
723
723
mutex_lock (& epc -> list_lock );
@@ -743,7 +743,7 @@ void pci_epc_init_notify(struct pci_epc *epc)
743
743
{
744
744
struct pci_epf * epf ;
745
745
746
- if (! epc || IS_ERR (epc ))
746
+ if (IS_ERR_OR_NULL (epc ))
747
747
return ;
748
748
749
749
mutex_lock (& epc -> list_lock );
@@ -769,7 +769,7 @@ void pci_epc_bme_notify(struct pci_epc *epc)
769
769
{
770
770
struct pci_epf * epf ;
771
771
772
- if (! epc || IS_ERR (epc ))
772
+ if (IS_ERR_OR_NULL (epc ))
773
773
return ;
774
774
775
775
mutex_lock (& epc -> list_lock );
0 commit comments