diff options
author | Guido Günther <agx@sigxcpu.org> | 2020-03-02 22:13:32 +0300 |
---|---|---|
committer | Lucas Stach <l.stach@pengutronix.de> | 2020-03-03 12:58:57 +0300 |
commit | ea4ed4a55f7363ad8db1863bd536548fb7e5c6aa (patch) | |
tree | fc1ab5ea6a5ccbe8f4f9a8ed5584d4f121151d54 /drivers | |
parent | ed1dd899baa32d47d9a93d98336472da50564346 (diff) | |
download | linux-ea4ed4a55f7363ad8db1863bd536548fb7e5c6aa.tar.xz |
drm/etnaviv: Fix typo in comment
Use 'is' instead of 'it' so it becomes a valid sentence and
spell 'resetting' correctly.
Signed-off-by: Guido Günther <agx@sigxcpu.org>
Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/gpu/drm/etnaviv/etnaviv_gpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/etnaviv/etnaviv_gpu.c b/drivers/gpu/drm/etnaviv/etnaviv_gpu.c index f7b2f3a36a86..50112fd646a3 100644 --- a/drivers/gpu/drm/etnaviv/etnaviv_gpu.c +++ b/drivers/gpu/drm/etnaviv/etnaviv_gpu.c @@ -515,7 +515,7 @@ static int etnaviv_hw_reset(struct etnaviv_gpu *gpu) /* read idle register. */ idle = gpu_read(gpu, VIVS_HI_IDLE_STATE); - /* try reseting again if FE it not idle */ + /* try resetting again if FE is not idle */ if ((idle & VIVS_HI_IDLE_STATE_FE) == 0) { dev_dbg(gpu->dev, "FE is not idle\n"); continue; |