staging: mt7621-eth: fix spelling mistake: "devictree" -> "devicetree"

Trivial fix to spelling mistake in dev_err message text

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Colin Ian King 2018-03-22 09:40:40 +00:00 committed by Greg Kroah-Hartman
parent 3eb3c3e32e
commit 12a0148711

View file

@ -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);