From: Colin Ian King Date: Thu, 22 Mar 2018 09:40:40 +0000 (+0000) Subject: staging: mt7621-eth: fix spelling mistake: "devictree" -> "devicetree" X-Git-Tag: v4.17-rc1~124^2~98 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=12a0148711a440f5b7111f95a34dfce88cdb47d6;p=linux.git staging: mt7621-eth: fix spelling mistake: "devictree" -> "devicetree" Trivial fix to spelling mistake in dev_err message text Signed-off-by: Colin Ian King Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/mt7621-eth/mtk_eth_soc.c b/drivers/staging/mt7621-eth/mtk_eth_soc.c index dea4270478b1..cbc7339843a5 100644 --- a/drivers/staging/mt7621-eth/mtk_eth_soc.c +++ b/drivers/staging/mt7621-eth/mtk_eth_soc.c @@ -2096,7 +2096,7 @@ static int mtk_probe(struct platform_device *pdev) sysclk = devm_clk_get(&pdev->dev, NULL); if (IS_ERR(sysclk)) { dev_err(&pdev->dev, - "the clock is not defined in the devictree\n"); + "the clock is not defined in the devicetree\n"); return -ENXIO; } eth->sysclk = clk_get_rate(sysclk);