configs/stm32f103-minimum/src/stm32_mcp2515.c: Patch up more brekage found in build testing. Looks like fields were added and removed by commit eb7373cedf, but the implementation that uses the structure were not updated.

This commit is contained in:
Gregory Nutt 2019-04-24 14:23:45 -06:00
parent 800f6003a6
commit a642e9ffac

View File

@ -107,9 +107,15 @@ static struct stm32_mcp2515config_s g_mcp2515config =
{
.config =
{
.spi = NULL;
.baud = 0, /* REVISIT. Proably broken by commit eb7373cedfa */
.btp = 0, /* REVISIT. Proably broken by commit eb7373cedfa */
.devid = 0,
.mode = 0, /* REVISIT. Proably broken by commit eb7373cedfa */
.nfilters = 6,
.ntxbuffers = 3,
#ifdef MCP2515_LOOPBACK
.loopback = false;
#endif
.attach = mcp2515_attach,
},
};