Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 217b5844 authored by Lothar Waßmann's avatar Lothar Waßmann Committed by David S. Miller
Browse files

net: fec: change type of 'bufdesc_ex' to bool



fep->bufdesc_ex is treated as a boolean value, thus declare it as
such.

Signed-off-by: default avatarLothar Waßmann <LW@KARO-electronics.de>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent df406bc9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -502,7 +502,7 @@ struct fec_enet_private {
	int	speed;
	struct	completion mdio_done;
	int	irq[FEC_IRQ_NUM];
	int	bufdesc_ex;
	bool	bufdesc_ex;
	int	pause_flag;

	struct	napi_struct napi;
+1 −3
Original line number Diff line number Diff line
@@ -3184,8 +3184,6 @@ fec_probe(struct platform_device *pdev)
	fep->pdev = pdev;
	fep->dev_id = dev_id++;

	fep->bufdesc_ex = 0;

	platform_set_drvdata(pdev, ndev);

	phy_node = of_parse_phandle(np, "phy-handle", 0);
@@ -3243,7 +3241,7 @@ fec_probe(struct platform_device *pdev)
		pdev->id_entry->driver_data & FEC_QUIRK_HAS_BUFDESC_EX;
	if (IS_ERR(fep->clk_ptp)) {
		fep->clk_ptp = NULL;
		fep->bufdesc_ex = 0;
		fep->bufdesc_ex = false;
	}

	ret = fec_enet_clk_enable(ndev, true);