mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-25 13:14:07 +08:00
platform/chrome: wilco_ec: convert stream-like files from nonseekable_open -> stream_open
Eliminate the following coccicheck warning: ./drivers/platform/chrome/wilco_ec/telemetry.c:259:1-17: WARNING: telem_fops: .read() and .write() have stream semantic; safe to change nonseekable_open -> stream_open. Reported-by: Abaci Robot <abaci@linux.alibaba.com> Signed-off-by: Yang Li <yang.lee@linux.alibaba.com> Signed-off-by: Enric Balletbo i Serra <enric.balletbo@collabora.com> Link: https://lore.kernel.org/r/1612688918-63132-1-git-send-email-yang.lee@linux.alibaba.com
This commit is contained in:
parent
a38fd87484
commit
dbc334fb41
@ -256,7 +256,7 @@ static int telem_open(struct inode *inode, struct file *filp)
|
|||||||
sess_data->dev_data = dev_data;
|
sess_data->dev_data = dev_data;
|
||||||
sess_data->has_msg = false;
|
sess_data->has_msg = false;
|
||||||
|
|
||||||
nonseekable_open(inode, filp);
|
stream_open(inode, filp);
|
||||||
filp->private_data = sess_data;
|
filp->private_data = sess_data;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user