Skip to content

Commit

Permalink
drm/tinydrm: fix semicolon.cocci warnings
Browse files Browse the repository at this point in the history
drivers/gpu/drm/tinydrm/core/tinydrm-helpers.c:454:2-3: Unneeded semicolon

 Remove unneeded semicolon.

Generated by: scripts/coccinelle/misc/semicolon.cocci

Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20170223164647.GA2519@lkp-ws02
  • Loading branch information
kbuild test robot authored and Daniel Vetter committed Feb 26, 2017
1 parent b29461d commit 8c47c08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/tinydrm/core/tinydrm-helpers.c
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ int tinydrm_spi_transfer(struct spi_device *spi, u32 speed_hz,
ret = spi_sync(spi, &m);
if (ret)
return ret;
};
}

return 0;
}
Expand Down

0 comments on commit 8c47c08

Please sign in to comment.