OSDN Git Service

net: ethernet: ti: use true, false for bool variables in cpsw_new.c
authorJason Yan <yanaijie@huawei.com>
Tue, 5 May 2020 07:46:23 +0000 (15:46 +0800)
committerDavid S. Miller <davem@davemloft.net>
Tue, 5 May 2020 18:39:43 +0000 (11:39 -0700)
Fix the following coccicheck warning:

drivers/net/ethernet/ti/cpsw_new.c:1924:2-17: WARNING: Assignment of
0/1 to bool variable
drivers/net/ethernet/ti/cpsw_new.c:1231:1-16: WARNING: Assignment of
0/1 to bool variable

Signed-off-by: Jason Yan <yanaijie@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/ti/cpsw_new.c

index 33c8dd6..dce4931 100644 (file)
@@ -1228,7 +1228,7 @@ static int cpsw_probe_dt(struct cpsw_common *cpsw)
        data->active_slave = 0;
        data->channels = CPSW_MAX_QUEUES;
        data->ale_entries = CPSW_ALE_NUM_ENTRIES;
-       data->dual_emac = 1;
+       data->dual_emac = true;
        data->bd_ram_size = CPSW_BD_RAM_SIZE;
        data->mac_control = 0;
 
@@ -1921,7 +1921,7 @@ static int cpsw_probe(struct platform_device *pdev)
 
        soc = soc_device_match(cpsw_soc_devices);
        if (soc)
-               cpsw->quirk_irq = 1;
+               cpsw->quirk_irq = true;
 
        cpsw->rx_packet_max = rx_packet_max;
        cpsw->descs_pool_size = descs_pool_size;