Commit fe9b610b authored by Anson Jacob's avatar Anson Jacob Committed by Greg Kroah-Hartman

staging: fbtft: fbtft_device: Fix checkpatch warning

Fix checkpatch.pl warning:
Block comments use * on subsequent lines
Block comments use a trailing */ on a separate line
Signed-off-by: default avatarAnson Jacob <ansonjacob.aj@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b2ac4a92
...@@ -1215,7 +1215,8 @@ static struct fbtft_device_display displays[] = { ...@@ -1215,7 +1215,8 @@ static struct fbtft_device_display displays[] = {
} }
}, { }, {
/* This should be the last item. /* This should be the last item.
Used with the custom argument */ * Used with the custom argument
*/
.name = "", .name = "",
.spi = &(struct spi_board_info) { .spi = &(struct spi_board_info) {
.modalias = "", .modalias = "",
...@@ -1306,8 +1307,9 @@ static struct fbtft_gpio fbtft_device_param_gpios[MAX_GPIOS + 1] = { }; ...@@ -1306,8 +1307,9 @@ static struct fbtft_gpio fbtft_device_param_gpios[MAX_GPIOS + 1] = { };
static void fbtft_device_pdev_release(struct device *dev) static void fbtft_device_pdev_release(struct device *dev)
{ {
/* Needed to silence this message: /* Needed to silence this message:
Device 'xxx' does not have a release() function, it is broken and must be fixed * Device 'xxx' does not have a release() function,
*/ * it is broken and must be fixed
*/
} }
static int spi_device_found(struct device *dev, void *data) static int spi_device_found(struct device *dev, void *data)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment