Home | History | Annotate | Download | only in pcbios

Lines Matching refs:drive

17 	struct int13_drive *drive;
25 drive = zalloc ( sizeof ( *drive ) );
26 if ( ! drive ) {
50 drive->blockdev = &ata->blockdev;
52 register_int13_drive ( drive );
53 printf ( "Registered as BIOS drive %#02x\n", drive->drive );
54 printf ( "Booting from BIOS drive %#02x\n", drive->drive );
55 rc = int13_boot ( drive->drive );
58 /* Leave drive registered, if instructed to do so */
62 printf ( "Unregistering BIOS drive %#02x\n", drive->drive );
63 unregister_int13_drive ( drive );
68 free ( drive );