Remove a redundant option ROM check, which was never meant to be committed.

This commit is contained in:
Jung-uk Kim 2009-10-19 23:09:39 +00:00
parent c3514114c6
commit 494d4d251b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=198259

View File

@ -129,9 +129,8 @@ dpms_identify(driver_t *driver, device_t parent)
if (devclass_get_device(dpms_devclass, 0) != NULL)
return;
if ((x86bios_match_device(0xc0000, parent) &&
device_get_flags(parent) != 0) ||
x86bios_get_orm(0xc0000) != NULL)
if (x86bios_match_device(0xc0000, parent) &&
device_get_flags(parent) != 0)
device_add_child(parent, "dpms", 0);
}