3 comments:
unsigned int i;
struct it85spi_data *data;
keep the declarations together. So
```
unsigned int i;
struct it85spi_data *data;
if (get_data_from_context(flash, &data) < 0) {
..
```
data->ce_high = 0;
data->ce_low = 0;
```
data->ce_high = NULL;
data->ce_low = NULL;
```
{
return 1;
`free(data);` before the return, it was correct before.
To view, visit change 47655. To unsubscribe, or for help writing mail filters, visit settings.