| 182 | } |
| 183 | |
| 184 | static struct frba *find_frba(char *image, int size) |
| 185 | { |
| 186 | struct fdbar *fdb = find_fd(image, size); |
| 187 | if (!fdb) |
| 188 | return NULL; |
| 189 | struct frba *frba = |
| 190 | (struct frba *) (image + (((fdb->flmap0 >> 16) & 0xff) << 4)); |
| 191 | return PTR_IN_RANGE(frba, image, size) ? frba : NULL; |
| 192 | } |
| 193 | |
| 194 | static struct fpsba *find_fpsba(char *image, int size) |
| 195 | { |
no test coverage detected