diff options
author | Mike Brudevold <mike@brudevold.com> | 2010-04-15 19:55:50 -0500 |
---|---|---|
committer | Kay Sievers <kay.sievers@vrfy.org> | 2010-04-16 07:39:56 +0200 |
commit | 7c07740ce7b0941844b15573449a730283d5bba5 (patch) | |
tree | 4bfc4cdc7194628119d50fef45e010f400d7aa10 /extras | |
parent | b3ad0c3c6fce3c04a2f3070200001d6566d1b322 (diff) |
cdrom_id: add missing profiles to feature_profiles
Signed-off-by: Mike Brudevold <mike@brudevold.com>
Diffstat (limited to 'extras')
-rw-r--r-- | extras/cdrom_id/cdrom_id.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/extras/cdrom_id/cdrom_id.c b/extras/cdrom_id/cdrom_id.c index 722b8f8f45..da2785ee3f 100644 --- a/extras/cdrom_id/cdrom_id.c +++ b/extras/cdrom_id/cdrom_id.c @@ -274,6 +274,18 @@ static int feature_profiles(struct udev *udev, const unsigned char *profiles, si info(udev, "profile 0x%02x mo\n", profile); cd_mo = 1; break; + case 0x08: + info(udev, "profile 0x%02x cd_rom\n", profile); + cd_cd_rom = 1; + break; + case 0x09: + info(udev, "profile 0x%02x cd_r\n", profile); + cd_cd_r = 1; + break; + case 0x0A: + info(udev, "profile 0x%02x cd_rw\n", profile); + cd_cd_rw = 1; + break; case 0x10: info(udev, "profile 0x%02x dvd_rom\n", profile); cd_dvd_rom = 1; |