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