Attention is currently required from: Edward O'Callaghan, Anastasia Klimchuk.
2 comments:
File dummyflasher.c:
Patch Set #2, Line 79: uint8_t refs_cnt;
Can you add a comment on this: to explain that dummyflasher can register multiple masters and they a […]
Done
data->refs_cnt += ((dummy_buses_supported & BUS_PROG) != BUS_NONE);
data->refs_cnt += ((dummy_buses_supported & BUS_NONSPI) != BUS_NONE);
data->refs_cnt += ((dummy_buses_supported & BUS_SPI) != BUS_NONE);
#if 0
data->refs_cnt += (dummy_buses_supported & BUS_PROG) ? 1 : 0;
data->refs_cnt += (dummy_buses_supported & BUS_NONSPI) ? 1 : 0;
data->refs_cnt += (dummy_buses_supported & BUS_SPI) ? 1 : 0;
#endif
Another thing could be to add `&& !ret` to every condition. […]
Your last idea is exactly what we need. Thank you! Here we go :)
To view, visit change 72408. To unsubscribe, or for help writing mail filters, visit settings.