Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 82084
b: refs/heads/master
c: f18f960
h: refs/heads/master
v: v3
  • Loading branch information
Bartlomiej Zolnierkiewicz committed Feb 1, 2008
1 parent cc36863 commit 34b4ad3
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 57 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2609d06d36317cc22f6d3c37186a8cf1a5f87ba6
refs/heads/master: f18f960c5c1568fa2f720e2cb31d6c1af9ea1e1a
1 change: 0 additions & 1 deletion trunk/drivers/ide/ide-cd.c
Original file line number Diff line number Diff line change
Expand Up @@ -2969,7 +2969,6 @@ static void ide_cd_release(struct kref *kref)

kfree(info->buffer);
kfree(info->toc);
kfree(info->changer_info);
if (devinfo->handle == drive && unregister_cdrom(devinfo))
printk(KERN_ERR "%s: %s failed to unregister device from the cdrom "
"driver.\n", __FUNCTION__, drive->name);
Expand Down
55 changes: 0 additions & 55 deletions trunk/drivers/ide/ide-cd.h
Original file line number Diff line number Diff line change
Expand Up @@ -357,59 +357,6 @@ struct atapi_capabilities_page {
char pad[4];
};


struct atapi_mechstat_header {
#if defined(__BIG_ENDIAN_BITFIELD)
__u8 fault : 1;
__u8 changer_state : 2;
__u8 curslot : 5;
#elif defined(__LITTLE_ENDIAN_BITFIELD)
__u8 curslot : 5;
__u8 changer_state : 2;
__u8 fault : 1;
#else
#error "Please fix <asm/byteorder.h>"
#endif

#if defined(__BIG_ENDIAN_BITFIELD)
__u8 mech_state : 3;
__u8 door_open : 1;
__u8 reserved1 : 4;
#elif defined(__LITTLE_ENDIAN_BITFIELD)
__u8 reserved1 : 4;
__u8 door_open : 1;
__u8 mech_state : 3;
#else
#error "Please fix <asm/byteorder.h>"
#endif

byte curlba[3];
byte nslots;
__u16 slot_tablelen;
};


struct atapi_slot {
#if defined(__BIG_ENDIAN_BITFIELD)
__u8 disc_present : 1;
__u8 reserved1 : 6;
__u8 change : 1;
#elif defined(__LITTLE_ENDIAN_BITFIELD)
__u8 change : 1;
__u8 reserved1 : 6;
__u8 disc_present : 1;
#else
#error "Please fix <asm/byteorder.h>"
#endif

byte reserved2[3];
};

struct atapi_changer_info {
struct atapi_mechstat_header hdr;
struct atapi_slot slots[0];
};

/* Extra per-device info for cdrom drives. */
struct cdrom_info {
ide_drive_t *drive;
Expand All @@ -434,8 +381,6 @@ struct cdrom_info {
int dma;
unsigned long last_block;
unsigned long start_seek;
/* Buffer to hold mechanism status and changer slot table. */
struct atapi_changer_info *changer_info;

struct ide_cd_config_flags config_flags;
struct ide_cd_state_flags state_flags;
Expand Down

0 comments on commit 34b4ad3

Please sign in to comment.