Attention is currently required from: Thomas Heijligen, Edward O'Callaghan.
15 comments:
File vl805.c:
Patch Set #18, Line 70: unsigned int i, j;
delete
Done
uint32_t outdata;
uint32_t indata;
unsigned int curwritecnt;
unsigned int curreadcnt;
scope to respective loop constructs..
Assuming you rewrote what you meant later.
File vl805.c:
#include "programmer.h"
#include "spi.h"
#include "flash.h"
#include "platform/pci.h"
#include <stdlib.h>
``` […]
Done
uint32_t outdata;
uint32_t indata;
delete
Done
Patch Set #20, Line 75: for (j = 0; j < writecnt; j += 4) {
`for (unsigned int i = 0; i < writecnt; i += 4) {`
Done
i
Done
const
Done
you can just do: […]
Done
Patch Set #20, Line 78: for (i = 0; i < curwritecnt; i++) {
`for (unsigned int j = 0; j < curwritecnt; j++) {`
Done
Patch Set #20, Line 89: for (j = 0; j < readcnt; j += 4) {
`for (unsigned int i = 0; i < readcnt; i += 4) {`
Done
i
Done
const
Done
Patch Set #20, Line 92: indata
`uint32_t data =`
Done
Patch Set #20, Line 93: for (i = 0; i < curreadcnt; i++) {
`for (unsigned int j = 0; j < curreadcnt; j++) {`
Done
j
Done
To view, visit change 72057. To unsubscribe, or for help writing mail filters, visit settings.