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 <gerard.marull@nordicsemi.no>
This commit is contained in:
parent
9b9de62046
commit
0cb5e2155e
1 changed files with 1 additions and 1 deletions
|
@ -429,7 +429,7 @@ static struct gd7965_data gd7965_driver = {
|
||||||
.config = &gd7965_config
|
.config = &gd7965_config
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct gd7965_config gd7965_config {
|
static const struct gd7965_config gd7965_config = {
|
||||||
.bus = SPI_DT_SPEC_INST_GET(
|
.bus = SPI_DT_SPEC_INST_GET(
|
||||||
0, SPI_OP_MODE_MASTER | SPI_WORD_SET(8), 0)
|
0, SPI_OP_MODE_MASTER | SPI_WORD_SET(8), 0)
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue