mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 01:22:07 +00:00
net: macb: fix build warning
We are getting build warning about: macb.c:2889:13: warning: 'tx_clk' may be used uninitialized in this function macb.c:2888:11: warning: 'hclk' may be used uninitialized in this function In reality they are not used uninitialized as clk_init() will initialize them, this patch will just silence the warning. Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org> Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
5cfa30397b
commit
36df745536
@ -2823,7 +2823,7 @@ static int macb_probe(struct platform_device *pdev)
|
||||
struct device_node *np = pdev->dev.of_node;
|
||||
struct device_node *phy_node;
|
||||
const struct macb_config *macb_config = NULL;
|
||||
struct clk *pclk, *hclk, *tx_clk;
|
||||
struct clk *pclk, *hclk = NULL, *tx_clk = NULL;
|
||||
unsigned int queue_mask, num_queues;
|
||||
struct macb_platform_data *pdata;
|
||||
bool native_io;
|
||||
|
Loading…
Reference in New Issue
Block a user