tidbits only

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8251 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Rudolf Cornelissen 2004-07-01 14:18:19 +00:00
parent 0ecea71b00
commit 6c24cf1b7e
2 changed files with 3 additions and 3 deletions

View File

@ -80,7 +80,7 @@ status_t nv_general_powerup()
{
status_t status;
LOG(1,("POWERUP: nVidia (open)BeOS Accelerant 0.16 running.\n"));
LOG(1,("POWERUP: nVidia (open)BeOS Accelerant 0.17 running.\n"));
/* preset no laptop */
si->ps.laptop = false;

View File

@ -39,10 +39,10 @@ status_t parse_pins ()
/* check BIOS signature - this is defined in the PCI standard */
if (rom[0]!=0x55 || rom[1]!=0xaa)
{
LOG(8,("INFO: BIOS signiture not found\n"));
LOG(8,("INFO: BIOS signature not found\n"));
return B_ERROR;
}
LOG(2,("INFO: BIOS signiture $AA55 found OK\n"));
LOG(2,("INFO: BIOS signature $AA55 found OK\n"));
/* check for a valid PINS struct adress */
pins = rom + (rom[0x7FFC]|(rom[0x7FFD]<<8));
if ((pins - rom) > 0x7F80)