Skip to content

Commit 0cb5e21

Browse files
gmarullnashif
authored andcommitted
drivers: display: gd7965: fix syntax error
The configuration initializer had a syntax error (missing =). The driver could not be compiled as a result. Signed-off-by: Gerard Marull-Paretas <[email protected]>
1 parent 9b9de62 commit 0cb5e21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/display/gd7965.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ static struct gd7965_data gd7965_driver = {
429429
.config = &gd7965_config
430430
};
431431

432-
static const struct gd7965_config gd7965_config {
432+
static const struct gd7965_config gd7965_config = {
433433
.bus = SPI_DT_SPEC_INST_GET(
434434
0, SPI_OP_MODE_MASTER | SPI_WORD_SET(8), 0)
435435
};

0 commit comments

Comments
 (0)