Lines Matching refs:check
425 union pnp_bios_install_struct *check; in pnpbios_probe_system() local
436 for (check = (union pnp_bios_install_struct *)__va(0xf0000); in pnpbios_probe_system()
437 check < (union pnp_bios_install_struct *)__va(0xffff0); in pnpbios_probe_system()
438 check = (void *)check + 16) { in pnpbios_probe_system()
439 if (check->fields.signature != PNP_SIGNATURE) in pnpbios_probe_system()
443 check); in pnpbios_probe_system()
444 length = check->fields.length; in pnpbios_probe_system()
451 sum += check->chars[i]; in pnpbios_probe_system()
457 if (check->fields.version < 0x10) { in pnpbios_probe_system()
460 check->fields.version >> 4, in pnpbios_probe_system()
461 check->fields.version & 15); in pnpbios_probe_system()
466 check->fields.version >> 4, check->fields.version & 15, in pnpbios_probe_system()
467 check->fields.pm16cseg, check->fields.pm16offset, in pnpbios_probe_system()
468 check->fields.pm16dseg); in pnpbios_probe_system()
469 pnp_bios_install = check; in pnpbios_probe_system()