diff options
author | Colin Ian King <colin.king@canonical.com> | 2018-03-22 09:40:40 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-03-22 18:31:04 +0100 |
commit | 12a0148711a440f5b7111f95a34dfce88cdb47d6 (patch) | |
tree | 4039005dc64b53d51ba7dda2ca08d06ed686d481 /drivers/staging/mt7621-eth | |
parent | 3eb3c3e32eef50e3a3375bf1636e05f5ec4b1210 (diff) | |
download | linux-12a0148711a440f5b7111f95a34dfce88cdb47d6.tar.bz2 |
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>
Diffstat (limited to 'drivers/staging/mt7621-eth')
-rw-r--r-- | drivers/staging/mt7621-eth/mtk_eth_soc.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |