Rename the Host Bridge INQUIRY product to RASCSI BRIDGE, as expected by the RASETHER.SYS driver.

This commit is contained in:
Daniel Markstedt 2022-09-22 09:03:36 -07:00
parent e7775a72cc
commit 1938a8b45f
2 changed files with 2 additions and 2 deletions

View File

@ -202,7 +202,7 @@ PrimaryDevice *DeviceFactory::CreateDevice(PbDeviceType type, const string& file
case SCBR:
device = make_unique<SCSIBR>();
device->SetProduct("SCSI HOST BRIDGE");
device->SetProduct("RASCSI BRIDGE");
device->SupportsParams(true);
device->SetDefaultParams(default_params[SCBR]);
break;

View File

@ -235,7 +235,7 @@ TEST(DeviceFactoryTest, SCBR_Device_Defaults)
EXPECT_FALSE(device->IsStopped());
EXPECT_EQ("RaSCSI", device->GetVendor());
EXPECT_EQ("SCSI HOST BRIDGE", device->GetProduct());
EXPECT_EQ("RASCSI BRIDGE", device->GetProduct());
EXPECT_EQ(string(rascsi_get_version_string()).substr(0, 2) + string(rascsi_get_version_string()).substr(3, 2),
device->GetRevision());