3 comments:
```
} else
msg_pdbg("Registering IT85 SPI.\n");
```
ce_high = (unsigned char *)(base + 0xE00); /* 0xFFFFFE00 */
ce_low = (unsigned char *)(base + 0xD00); /* 0xFFFFFD00 */
looks like you can just fold these into the below initialisation.
```
data->ce_high = (unsigned char *)(base + 0xE00); /* 0xFFFFFE00 */
data->ce_low = (unsigned char *)(base + 0xD00); /* 0xFFFFFD00 */
```
Patch Set #3, Line 362: msg_pdbg("Registering IT85 SPI.\n");
remove
To view, visit change 48196. To unsubscribe, or for help writing mail filters, visit settings.