| 286 |
|
|
| 287 |
/* we got an error? */ |
/* we got an error? */ |
| 288 |
if (n <= 0) |
if (n <= 0) |
| 289 |
printf(" IFD does not support GET CLOCK FREQUENCIES request\n"); |
printf(" IFD does not support GET CLOCK FREQUENCIES request: %s\n", strerror(errno)); |
| 290 |
else |
else |
| 291 |
if (n % 4) /* not a multiple of 4 */ |
if (n % 4) /* not a multiple of 4 */ |
| 292 |
printf(" wrong size for GET CLOCK FREQUENCIES: %d\n", n); |
printf(" wrong size for GET CLOCK FREQUENCIES: %d\n", n); |
| 328 |
|
|
| 329 |
/* we got an error? */ |
/* we got an error? */ |
| 330 |
if (n <= 0) |
if (n <= 0) |
| 331 |
printf(" IFD does not support GET_DATA_RATES request\n"); |
printf(" IFD does not support GET_DATA_RATES request: %s\n", |
| 332 |
|
strerror(errno)); |
| 333 |
else |
else |
| 334 |
if (n % 4) /* not a multiple of 4 */ |
if (n % 4) /* not a multiple of 4 */ |
| 335 |
printf(" wrong size for GET_DATA_RATES: %d\n", n); |
printf(" wrong size for GET_DATA_RATES: %d\n", n); |