staging: fbtft: Fix line over 80 characters

Fix line with over 80 characters to get rid of the warning
given by checkpatch

Signed-off-by: Daniela Mormocea <daniela.mormocea@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Daniela Mormocea 2019-03-05 00:23:08 +02:00 committed by Greg Kroah-Hartman
parent 8e99e99baf
commit 5e8e08c81f

View File

@ -718,7 +718,9 @@ static int flexfb_probe_common(struct spi_device *sdev,
par->fbtftops.write_vmem = fbtft_write_vmem16_bus16;
break;
default:
dev_err(dev, "argument 'buswidth': %d is not supported with parallel.\n", buswidth);
dev_err(dev,
"argument 'buswidth': %d is not supported with parallel.\n",
buswidth);
return -EINVAL;
}
}