rtc: move power of 2 periodic frequency check down into drivers
[linux-2.6/mini2440.git] / drivers / ide / ide-gd.h
blob7d3d101713e0682a21e5b69ef7bd2dcac86d833c
1 #ifndef __IDE_GD_H
2 #define __IDE_GD_H
4 #define DRV_NAME "ide-gd"
5 #define PFX DRV_NAME ": "
7 /* define to see debug info */
8 #define IDE_GD_DEBUG_LOG 0
10 #if IDE_GD_DEBUG_LOG
11 #define ide_debug_log(lvl, fmt, args...) __ide_debug_log(lvl, fmt, args)
12 #else
13 #define ide_debug_log(lvl, fmt, args...) do {} while (0)
14 #endif
16 struct ide_disk_obj {
17 ide_drive_t *drive;
18 ide_driver_t *driver;
19 struct gendisk *disk;
20 struct kref kref;
21 unsigned int openers; /* protected by BKL for now */
23 /* Last failed packet command */
24 struct ide_atapi_pc *failed_pc;
25 /* used for blk_{fs,pc}_request() requests */
26 struct ide_atapi_pc queued_pc;
28 /* Last error information */
29 u8 sense_key, asc, ascq;
31 int progress_indication;
33 /* Device information */
34 /* Current format */
35 int blocks, block_size, bs_factor;
36 /* Last format capacity descriptor */
37 u8 cap_desc[8];
38 /* Copy of the flexible disk page */
39 u8 flexible_disk_page[32];
42 sector_t ide_gd_capacity(ide_drive_t *);
44 #endif /* __IDE_GD_H */