Home | History | Annotate | Download | only in arch

Lines Matching defs:bpp

203 show_i386_boot_params(struct x86_boot_params  *bpp)
208 printf("timeout %d, ", le32toh(bpp->bp_timeout));
209 printf("flags %x, ", le32toh(bpp->bp_flags));
210 printf("speed %d, ", le32toh(bpp->bp_conspeed));
211 printf("ioaddr %x, ", le32toh(bpp->bp_consaddr));
213 if (consoles[i].dev == (int)le32toh(bpp->bp_consdev))
217 printf("console %d\n", le32toh(bpp->bp_consdev));
220 if (bpp->bp_keymap[0])
221 printf(" keymap %s\n", bpp->bp_keymap);
231 update_i386_boot_params(ib_params *params, struct x86_boot_params *bpp)
237 bplen = le32toh(bpp->bp_length);
244 memcpy(&bp, bpp, bplen);
297 memcpy(bpp, &bp, bplen);
506 struct x86_boot_params *bpp;
519 bpp = NULL;
537 bpp = (void *)(buf + 8);
540 if (bpp == NULL) {
551 if (update_i386_boot_params(params, bpp))