seq_printf(m, "%-16d%-16d", (setting->min * mul_factor + div_factor - 1) / div_factor, setting->max * mul_factor / div_factor);
#include <linux/module.h>
#include <linux/uaccess.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
static struct proc_dir_entry *proc_ide_root;
static int ide_imodel_proc_show(struct seq_file *m, void *v)
ide_hwif_t *hwif = (ide_hwif_t *) m->private;
case ide_generic: name = "generic"; break;
case ide_pci: name = "pci"; break;
case ide_cmd640: name = "cmd640"; break;
case ide_dtc2278: name = "dtc2278"; break;
case ide_ali14xx: name = "ali14xx"; break;
case ide_qd65xx: name = "qd65xx"; break;
case ide_umc8672: name = "umc8672"; break;
case ide_ht6560b: name = "ht6560b"; break;
case ide_4drives: name = "4drives"; break;
case ide_pmac: name = "mac-io"; break;
case ide_au1xxx: name = "au1xxx"; break;
case ide_palm3710: name = "palm3710"; break;
case ide_acorn: name = "acorn"; break;
default: name = "(unknown)"; break;
seq_printf(m, "%s\n", name);
static int ide_mate_proc_show(struct seq_file *m, void *v)
ide_hwif_t *hwif = (ide_hwif_t *) m->private;
seq_printf(m, "%s\n", hwif->mate->name);
seq_printf(m, "(none)\n");
static int ide_channel_proc_show(struct seq_file *m, void *v)
ide_hwif_t *hwif = (ide_hwif_t *) m->private;
seq_printf(m, "%c\n", hwif->channel ? '1' : '0');
static int ide_identify_proc_show(struct seq_file *m, void *v)
ide_drive_t *drive = (ide_drive_t *)m->private;
buf = kmalloc(SECTOR_SIZE, GFP_KERNEL);
if (taskfile_lib_get_identify(drive, buf) == 0) {
__le16 *val = (__le16 *)buf;