Received: by 2002:a05:6a10:16a7:0:0:0:0 with SMTP id gp39csp143964pxb; Wed, 11 Nov 2020 23:09:34 -0800 (PST) X-Google-Smtp-Source: ABdhPJwRoA25QVnsd84/6W6Y9kS8mEd27EcD+396b+PBcL7OhpyWINM3DUV7KeObJpUG4TNdGe7E X-Received: by 2002:a50:d582:: with SMTP id v2mr3751570edi.218.1605164974143; Wed, 11 Nov 2020 23:09:34 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1605164974; cv=none; d=google.com; s=arc-20160816; b=rpYVZlFVqgZ4F2hjoRoju7zstlMiY9VlPdX0HcQfB6GE7KefN2kMHoaKnUwo4E/8Ol Z5yMmDFjutWfWQfFfiZ3ehK7uqRcvoV1/uLYWWUouv+QJvp/oi3XAACHKPQNDjSX5ziE 4uAFi6ozSHPfCaXxBcTTtg60O1JcIgL2g3lPO92rEBphUNUwE86SqX2bng722qk3VxR2 kszHHtGFheJBTW++PF2KQCuH/9TTm72fA9d48JH/puWwcp8T8McNZE8OdjhxTPGuMYM3 4b7ndmAolnkxgo1qQ95G1wmfM/58w7hSGWYKT8qcty//p3yoCaOdW86U8HMiOAfYzkai lDig== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:mime-version:references:in-reply-to:message-id :date:subject:cc:to:from; bh=jwudu3ZYyDRy97uc/aIh9LVDIXCiarTsOYlk+B1UYGw=; b=DosD37hldHFLVBnE1sMM5UTolV6tQadX2IArtLGIjSv9jtzViqfOMc5p4J7BtXwB4+ MIZSMXzfqDq57n+yr2RwV8o7NwNp8dQF9PgFmKsr17cH6+ubuVo2E7CYmpb93COZ2lNK sMloA5GuwU0mtwDvLcEFTUq5HArwuHufm2Ps+sHcYOLXa84gQMLuh0KmwY2VQiD2y4JB Y2AAEIwLpNiuGwqPGUQas4yEllKEhhco0Oyfr6InQraHoIEbyz0ZFzLa9hZQaAwHdIH+ HGKrIMlQ73FZFoX0y3ESI8Fm0SWKkcbng9YNMN3ISn/rx1ItFUFVkTsTKy93zeAQh2Tu pxeA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id ci2si2950937ejc.211.2020.11.11.23.09.11; Wed, 11 Nov 2020 23:09:34 -0800 (PST) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727223AbgKLHHh (ORCPT + 99 others); Thu, 12 Nov 2020 02:07:37 -0500 Received: from szxga05-in.huawei.com ([45.249.212.191]:7520 "EHLO szxga05-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726039AbgKLHH3 (ORCPT ); Thu, 12 Nov 2020 02:07:29 -0500 Received: from DGGEMS405-HUB.china.huawei.com (unknown [172.30.72.59]) by szxga05-in.huawei.com (SkyGuard) with ESMTP id 4CWt2V1FC9zhkl5; Thu, 12 Nov 2020 15:07:14 +0800 (CST) Received: from huawei.com (10.69.192.56) by DGGEMS405-HUB.china.huawei.com (10.3.19.205) with Microsoft SMTP Server id 14.3.487.0; Thu, 12 Nov 2020 15:07:15 +0800 From: Luo Jiaxing To: , , CC: , , , , , , , , , , , Subject: [PATCH v4 4/5] usb: dwc3: debugfs: Introduce DEFINE_SHOW_STORE_ATTRIBUTE Date: Thu, 12 Nov 2020 15:07:42 +0800 Message-ID: <1605164864-58944-5-git-send-email-luojiaxing@huawei.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1605164864-58944-1-git-send-email-luojiaxing@huawei.com> References: <1605164864-58944-1-git-send-email-luojiaxing@huawei.com> MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.69.192.56] X-CFilter-Loop: Reflected Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Seq introduce a new helper macro DEFINE_SHOW_STORE_ATTRIBUTE for Read-Write file, so we apply it at dwc3 debugfs to reduce some duplicated code. While at that, also use DEFINE_SHOW_ATTRIBUTE() where possible. Signed-off-by: Luo Jiaxing Acked-by: Felipe Balbi --- drivers/usb/dwc3/debugfs.c | 52 ++++------------------------------------------ 1 file changed, 4 insertions(+), 48 deletions(-) diff --git a/drivers/usb/dwc3/debugfs.c b/drivers/usb/dwc3/debugfs.c index 5da4f60..2b5de8d 100644 --- a/drivers/usb/dwc3/debugfs.c +++ b/drivers/usb/dwc3/debugfs.c @@ -348,11 +348,6 @@ static int dwc3_lsp_show(struct seq_file *s, void *unused) return 0; } -static int dwc3_lsp_open(struct inode *inode, struct file *file) -{ - return single_open(file, dwc3_lsp_show, inode->i_private); -} - static ssize_t dwc3_lsp_write(struct file *file, const char __user *ubuf, size_t count, loff_t *ppos) { @@ -377,13 +372,7 @@ static ssize_t dwc3_lsp_write(struct file *file, const char __user *ubuf, return count; } -static const struct file_operations dwc3_lsp_fops = { - .open = dwc3_lsp_open, - .write = dwc3_lsp_write, - .read = seq_read, - .llseek = seq_lseek, - .release = single_release, -}; +DEFINE_SHOW_STORE_ATTRIBUTE(dwc3_lsp); static int dwc3_mode_show(struct seq_file *s, void *unused) { @@ -412,11 +401,6 @@ static int dwc3_mode_show(struct seq_file *s, void *unused) return 0; } -static int dwc3_mode_open(struct inode *inode, struct file *file) -{ - return single_open(file, dwc3_mode_show, inode->i_private); -} - static ssize_t dwc3_mode_write(struct file *file, const char __user *ubuf, size_t count, loff_t *ppos) { @@ -445,13 +429,7 @@ static ssize_t dwc3_mode_write(struct file *file, return count; } -static const struct file_operations dwc3_mode_fops = { - .open = dwc3_mode_open, - .write = dwc3_mode_write, - .read = seq_read, - .llseek = seq_lseek, - .release = single_release, -}; +DEFINE_SHOW_STORE_ATTRIBUTE(dwc3_mode); static int dwc3_testmode_show(struct seq_file *s, void *unused) { @@ -491,11 +469,6 @@ static int dwc3_testmode_show(struct seq_file *s, void *unused) return 0; } -static int dwc3_testmode_open(struct inode *inode, struct file *file) -{ - return single_open(file, dwc3_testmode_show, inode->i_private); -} - static ssize_t dwc3_testmode_write(struct file *file, const char __user *ubuf, size_t count, loff_t *ppos) { @@ -528,13 +501,7 @@ static ssize_t dwc3_testmode_write(struct file *file, return count; } -static const struct file_operations dwc3_testmode_fops = { - .open = dwc3_testmode_open, - .write = dwc3_testmode_write, - .read = seq_read, - .llseek = seq_lseek, - .release = single_release, -}; +DEFINE_SHOW_STORE_ATTRIBUTE(dwc3_testmode); static int dwc3_link_state_show(struct seq_file *s, void *unused) { @@ -564,11 +531,6 @@ static int dwc3_link_state_show(struct seq_file *s, void *unused) return 0; } -static int dwc3_link_state_open(struct inode *inode, struct file *file) -{ - return single_open(file, dwc3_link_state_show, inode->i_private); -} - static ssize_t dwc3_link_state_write(struct file *file, const char __user *ubuf, size_t count, loff_t *ppos) { @@ -620,13 +582,7 @@ static ssize_t dwc3_link_state_write(struct file *file, return count; } -static const struct file_operations dwc3_link_state_fops = { - .open = dwc3_link_state_open, - .write = dwc3_link_state_write, - .read = seq_read, - .llseek = seq_lseek, - .release = single_release, -}; +DEFINE_SHOW_STORE_ATTRIBUTE(dwc3_link_state); struct dwc3_ep_file_map { const char name[25]; -- 2.7.4