diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-13 17:15:06 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-13 17:15:06 -0400 |
commit | 7591103c08abade60aeddb432ed0686ddd0de1c6 (patch) | |
tree | 523343b43b0c420666da18c64e1e9f21ff63dea5 /drivers/ide/ide-floppy_proc.c | |
parent | 2be4ff2f084842839b041b793ed6237e8d1d315a (diff) | |
parent | 9c6102d446985bca9c426cb2d9b478ed21d2b024 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/bart/ide-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/bart/ide-2.6: (66 commits)
ata: Add documentation for hard disk shock protection interface (v3)
ide: Implement disk shock protection support (v4)
ide-cd: fix printk format warning
piix: add Hercules EC-900 mini-notebook to ich_laptop short cable list
ide-atapi: assign taskfile flags per device type
ide-cd: move cdrom_info.dma to ide_drive_t.dma
ide: add ide_drive_t.dma flag
ide-cd: add a debug_mask module parameter
ide-cd: convert driver to new ide debugging macro (v3)
ide: move SFF DMA code to ide-dma-sff.c
ide: cleanup ide-dma.c
ide: cleanup ide_build_dmatable()
ide: remove needless includes from ide-dma.c
ide: switch to DMA-mapping API part #2
ide: make ide_dma_timeout() available also for CONFIG_BLK_DEV_IDEDMA_SFF=n
ide: make ide_dma_lost_irq() available also for CONFIG_BLK_DEV_IDEDMA_SFF=n
ide: __ide_dma_end() -> ide_dma_end()
pmac: remove needless pmac_ide_destroy_dmatable() wrapper
pmac: remove superfluous pmif == NULL checks
ide: Two fixes regarding memory allocation
...
Diffstat (limited to 'drivers/ide/ide-floppy_proc.c')
-rw-r--r-- | drivers/ide/ide-floppy_proc.c | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/drivers/ide/ide-floppy_proc.c b/drivers/ide/ide-floppy_proc.c new file mode 100644 index 000000000000..76f0c6c4eca3 --- /dev/null +++ b/drivers/ide/ide-floppy_proc.c | |||
@@ -0,0 +1,33 @@ | |||
1 | #include <linux/kernel.h> | ||
2 | #include <linux/ide.h> | ||
3 | |||
4 | #include "ide-floppy.h" | ||
5 | |||
6 | static int proc_idefloppy_read_capacity(char *page, char **start, off_t off, | ||
7 | int count, int *eof, void *data) | ||
8 | { | ||
9 | ide_drive_t*drive = (ide_drive_t *)data; | ||
10 | int len; | ||
11 | |||
12 | len = sprintf(page, "%llu\n", (long long)ide_floppy_capacity(drive)); | ||
13 | PROC_IDE_READ_RETURN(page, start, off, count, eof, len); | ||
14 | } | ||
15 | |||
16 | ide_proc_entry_t ide_floppy_proc[] = { | ||
17 | { "capacity", S_IFREG|S_IRUGO, proc_idefloppy_read_capacity, NULL }, | ||
18 | { "geometry", S_IFREG|S_IRUGO, proc_ide_read_geometry, NULL }, | ||
19 | { NULL, 0, NULL, NULL } | ||
20 | }; | ||
21 | |||
22 | ide_devset_rw_field(bios_cyl, bios_cyl); | ||
23 | ide_devset_rw_field(bios_head, bios_head); | ||
24 | ide_devset_rw_field(bios_sect, bios_sect); | ||
25 | ide_devset_rw_field(ticks, pc_delay); | ||
26 | |||
27 | const struct ide_proc_devset ide_floppy_settings[] = { | ||
28 | IDE_PROC_DEVSET(bios_cyl, 0, 1023), | ||
29 | IDE_PROC_DEVSET(bios_head, 0, 255), | ||
30 | IDE_PROC_DEVSET(bios_sect, 0, 63), | ||
31 | IDE_PROC_DEVSET(ticks, 0, 255), | ||
32 | { 0 }, | ||
33 | }; | ||