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:
Yang Li 2021-02-07 17:08:38 +08:00 committed by Enric Balletbo i Serra
parent a38fd87484
commit dbc334fb41

View File

@ -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;