| 164 | } |
| 165 | |
| 166 | static struct fcba *find_fcba(char *image, int size) |
| 167 | { |
| 168 | struct fdbar *fdb = find_fd(image, size); |
| 169 | if (!fdb) |
| 170 | return NULL; |
| 171 | struct fcba *fcba = (struct fcba *)(image + ((fdb->flmap0 & 0xff) << 4)); |
| 172 | return PTR_IN_RANGE(fcba, image, size) ? fcba : NULL; |
| 173 | } |
| 174 | |
| 175 | static struct fmba *find_fmba(char *image, int size) |
| 176 | { |
no test coverage detected