Recognize the Pioneer CD-ROM DRM-6324X as a changer.

PR:		kern/15198
Submitted by:	Don Lewis <truckman@FreeBSD.org>
This commit is contained in:
ken 1999-12-07 04:14:56 +00:00
parent 277eda1860
commit 73139666cb

View File

@ -142,6 +142,8 @@ struct cd_quirk_entry {
cd_quirks quirks;
};
static const char pioneer[] = "PIONEER";
/*
* These quirk entries aren't strictly necessary. Basically, what they do
* is tell cdregister() up front that a device is a changer. Otherwise, it
@ -157,7 +159,11 @@ static struct cd_quirk_entry cd_quirk_table[] =
/*quirks*/ CD_Q_CHANGER
},
{
{ T_CDROM, SIP_MEDIA_REMOVABLE, "PIONEER", "CD-ROM DRM-604X",
{ T_CDROM, SIP_MEDIA_REMOVABLE, pioneer, "CD-ROM DRM-604X",
"*"}, /* quirks */ CD_Q_CHANGER
},
{
{ T_CDROM, SIP_MEDIA_REMOVABLE, pioneer, "CD-ROM DRM-6324X",
"*"}, /* quirks */ CD_Q_CHANGER
},
{