Loading drivers/mmc/core/mmc_test.c +2 −12 Original line number Diff line number Diff line Loading @@ -3145,17 +3145,7 @@ static int mtf_testlist_show(struct seq_file *sf, void *data) return 0; } static int mtf_testlist_open(struct inode *inode, struct file *file) { return single_open(file, mtf_testlist_show, inode->i_private); } static const struct file_operations mmc_test_fops_testlist = { .open = mtf_testlist_open, .read = seq_read, .llseek = seq_lseek, .release = single_release, }; DEFINE_SHOW_ATTRIBUTE(mtf_testlist); static void mmc_test_free_dbgfs_file(struct mmc_card *card) { Loading Loading @@ -3216,7 +3206,7 @@ static int mmc_test_register_dbgfs_file(struct mmc_card *card) goto err; ret = __mmc_test_register_dbgfs_file(card, "testlist", S_IRUGO, &mmc_test_fops_testlist); &mtf_testlist_fops); if (ret) goto err; Loading drivers/mmc/host/atmel-mci.c +5 −26 Original line number Diff line number Diff line Loading @@ -446,18 +446,7 @@ static int atmci_req_show(struct seq_file *s, void *v) return 0; } static int atmci_req_open(struct inode *inode, struct file *file) { return single_open(file, atmci_req_show, inode->i_private); } static const struct file_operations atmci_req_fops = { .owner = THIS_MODULE, .open = atmci_req_open, .read = seq_read, .llseek = seq_lseek, .release = single_release, }; DEFINE_SHOW_ATTRIBUTE(atmci_req); static void atmci_show_status_reg(struct seq_file *s, const char *regname, u32 value) Loading Loading @@ -583,18 +572,7 @@ static int atmci_regs_show(struct seq_file *s, void *v) return ret; } static int atmci_regs_open(struct inode *inode, struct file *file) { return single_open(file, atmci_regs_show, inode->i_private); } static const struct file_operations atmci_regs_fops = { .owner = THIS_MODULE, .open = atmci_regs_open, .read = seq_read, .llseek = seq_lseek, .release = single_release, }; DEFINE_SHOW_ATTRIBUTE(atmci_regs); static void atmci_init_debugfs(struct atmel_mci_slot *slot) { Loading @@ -614,7 +592,8 @@ static void atmci_init_debugfs(struct atmel_mci_slot *slot) if (!node) goto err; node = debugfs_create_file("req", S_IRUSR, root, slot, &atmci_req_fops); node = debugfs_create_file("req", S_IRUSR, root, slot, &atmci_req_fops); if (!node) goto err; Loading drivers/mmc/host/omap_hsmmc.c +2 −12 Original line number Diff line number Diff line Loading @@ -1652,7 +1652,7 @@ static struct mmc_host_ops omap_hsmmc_ops = { #ifdef CONFIG_DEBUG_FS static int omap_hsmmc_regs_show(struct seq_file *s, void *data) static int mmc_regs_show(struct seq_file *s, void *data) { struct mmc_host *mmc = s->private; struct omap_hsmmc_host *host = mmc_priv(mmc); Loading Loading @@ -1691,17 +1691,7 @@ static int omap_hsmmc_regs_show(struct seq_file *s, void *data) return 0; } static int omap_hsmmc_regs_open(struct inode *inode, struct file *file) { return single_open(file, omap_hsmmc_regs_show, inode->i_private); } static const struct file_operations mmc_regs_fops = { .open = omap_hsmmc_regs_open, .read = seq_read, .llseek = seq_lseek, .release = single_release, }; DEFINE_SHOW_ATTRIBUTE(mmc_regs); static void omap_hsmmc_debugfs(struct mmc_host *mmc) { Loading drivers/mmc/host/s3cmci.c +4 −26 Original line number Diff line number Diff line Loading @@ -1405,18 +1405,7 @@ static int s3cmci_state_show(struct seq_file *seq, void *v) return 0; } static int s3cmci_state_open(struct inode *inode, struct file *file) { return single_open(file, s3cmci_state_show, inode->i_private); } static const struct file_operations s3cmci_fops_state = { .owner = THIS_MODULE, .open = s3cmci_state_open, .read = seq_read, .llseek = seq_lseek, .release = single_release, }; DEFINE_SHOW_ATTRIBUTE(s3cmci_state); #define DBG_REG(_r) { .addr = S3C2410_SDI##_r, .name = #_r } Loading Loading @@ -1458,18 +1447,7 @@ static int s3cmci_regs_show(struct seq_file *seq, void *v) return 0; } static int s3cmci_regs_open(struct inode *inode, struct file *file) { return single_open(file, s3cmci_regs_show, inode->i_private); } static const struct file_operations s3cmci_fops_regs = { .owner = THIS_MODULE, .open = s3cmci_regs_open, .read = seq_read, .llseek = seq_lseek, .release = single_release, }; DEFINE_SHOW_ATTRIBUTE(s3cmci_regs); static void s3cmci_debugfs_attach(struct s3cmci_host *host) { Loading @@ -1483,14 +1461,14 @@ static void s3cmci_debugfs_attach(struct s3cmci_host *host) host->debug_state = debugfs_create_file("state", 0444, host->debug_root, host, &s3cmci_fops_state); &s3cmci_state_fops); if (IS_ERR(host->debug_state)) dev_err(dev, "failed to create debug state file\n"); host->debug_regs = debugfs_create_file("regs", 0444, host->debug_root, host, &s3cmci_fops_regs); &s3cmci_regs_fops); if (IS_ERR(host->debug_regs)) dev_err(dev, "failed to create debug regs file\n"); Loading Loading
drivers/mmc/core/mmc_test.c +2 −12 Original line number Diff line number Diff line Loading @@ -3145,17 +3145,7 @@ static int mtf_testlist_show(struct seq_file *sf, void *data) return 0; } static int mtf_testlist_open(struct inode *inode, struct file *file) { return single_open(file, mtf_testlist_show, inode->i_private); } static const struct file_operations mmc_test_fops_testlist = { .open = mtf_testlist_open, .read = seq_read, .llseek = seq_lseek, .release = single_release, }; DEFINE_SHOW_ATTRIBUTE(mtf_testlist); static void mmc_test_free_dbgfs_file(struct mmc_card *card) { Loading Loading @@ -3216,7 +3206,7 @@ static int mmc_test_register_dbgfs_file(struct mmc_card *card) goto err; ret = __mmc_test_register_dbgfs_file(card, "testlist", S_IRUGO, &mmc_test_fops_testlist); &mtf_testlist_fops); if (ret) goto err; Loading
drivers/mmc/host/atmel-mci.c +5 −26 Original line number Diff line number Diff line Loading @@ -446,18 +446,7 @@ static int atmci_req_show(struct seq_file *s, void *v) return 0; } static int atmci_req_open(struct inode *inode, struct file *file) { return single_open(file, atmci_req_show, inode->i_private); } static const struct file_operations atmci_req_fops = { .owner = THIS_MODULE, .open = atmci_req_open, .read = seq_read, .llseek = seq_lseek, .release = single_release, }; DEFINE_SHOW_ATTRIBUTE(atmci_req); static void atmci_show_status_reg(struct seq_file *s, const char *regname, u32 value) Loading Loading @@ -583,18 +572,7 @@ static int atmci_regs_show(struct seq_file *s, void *v) return ret; } static int atmci_regs_open(struct inode *inode, struct file *file) { return single_open(file, atmci_regs_show, inode->i_private); } static const struct file_operations atmci_regs_fops = { .owner = THIS_MODULE, .open = atmci_regs_open, .read = seq_read, .llseek = seq_lseek, .release = single_release, }; DEFINE_SHOW_ATTRIBUTE(atmci_regs); static void atmci_init_debugfs(struct atmel_mci_slot *slot) { Loading @@ -614,7 +592,8 @@ static void atmci_init_debugfs(struct atmel_mci_slot *slot) if (!node) goto err; node = debugfs_create_file("req", S_IRUSR, root, slot, &atmci_req_fops); node = debugfs_create_file("req", S_IRUSR, root, slot, &atmci_req_fops); if (!node) goto err; Loading
drivers/mmc/host/omap_hsmmc.c +2 −12 Original line number Diff line number Diff line Loading @@ -1652,7 +1652,7 @@ static struct mmc_host_ops omap_hsmmc_ops = { #ifdef CONFIG_DEBUG_FS static int omap_hsmmc_regs_show(struct seq_file *s, void *data) static int mmc_regs_show(struct seq_file *s, void *data) { struct mmc_host *mmc = s->private; struct omap_hsmmc_host *host = mmc_priv(mmc); Loading Loading @@ -1691,17 +1691,7 @@ static int omap_hsmmc_regs_show(struct seq_file *s, void *data) return 0; } static int omap_hsmmc_regs_open(struct inode *inode, struct file *file) { return single_open(file, omap_hsmmc_regs_show, inode->i_private); } static const struct file_operations mmc_regs_fops = { .open = omap_hsmmc_regs_open, .read = seq_read, .llseek = seq_lseek, .release = single_release, }; DEFINE_SHOW_ATTRIBUTE(mmc_regs); static void omap_hsmmc_debugfs(struct mmc_host *mmc) { Loading
drivers/mmc/host/s3cmci.c +4 −26 Original line number Diff line number Diff line Loading @@ -1405,18 +1405,7 @@ static int s3cmci_state_show(struct seq_file *seq, void *v) return 0; } static int s3cmci_state_open(struct inode *inode, struct file *file) { return single_open(file, s3cmci_state_show, inode->i_private); } static const struct file_operations s3cmci_fops_state = { .owner = THIS_MODULE, .open = s3cmci_state_open, .read = seq_read, .llseek = seq_lseek, .release = single_release, }; DEFINE_SHOW_ATTRIBUTE(s3cmci_state); #define DBG_REG(_r) { .addr = S3C2410_SDI##_r, .name = #_r } Loading Loading @@ -1458,18 +1447,7 @@ static int s3cmci_regs_show(struct seq_file *seq, void *v) return 0; } static int s3cmci_regs_open(struct inode *inode, struct file *file) { return single_open(file, s3cmci_regs_show, inode->i_private); } static const struct file_operations s3cmci_fops_regs = { .owner = THIS_MODULE, .open = s3cmci_regs_open, .read = seq_read, .llseek = seq_lseek, .release = single_release, }; DEFINE_SHOW_ATTRIBUTE(s3cmci_regs); static void s3cmci_debugfs_attach(struct s3cmci_host *host) { Loading @@ -1483,14 +1461,14 @@ static void s3cmci_debugfs_attach(struct s3cmci_host *host) host->debug_state = debugfs_create_file("state", 0444, host->debug_root, host, &s3cmci_fops_state); &s3cmci_state_fops); if (IS_ERR(host->debug_state)) dev_err(dev, "failed to create debug state file\n"); host->debug_regs = debugfs_create_file("regs", 0444, host->debug_root, host, &s3cmci_fops_regs); &s3cmci_regs_fops); if (IS_ERR(host->debug_regs)) dev_err(dev, "failed to create debug regs file\n"); Loading