V4L/DVB (7301): pvrusb2: Implement addition sysfs tracing
Signed-off-by: Mike Isely <isely@pobox.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
parent
beb0ecd7f0
commit
bedbbf8be2
1 changed files with 4 additions and 0 deletions
|
@ -287,6 +287,8 @@ static ssize_t store_val_norm(int id,struct device *class_dev,
|
||||||
struct pvr2_sysfs *sfp;
|
struct pvr2_sysfs *sfp;
|
||||||
int ret;
|
int ret;
|
||||||
sfp = (struct pvr2_sysfs *)class_dev->driver_data;
|
sfp = (struct pvr2_sysfs *)class_dev->driver_data;
|
||||||
|
pvr2_sysfs_trace("pvr2_sysfs(%p) store_val_norm(cid=%d) \"%.*s\"",
|
||||||
|
sfp,id,count,buf);
|
||||||
ret = store_val_any(id,0,sfp,buf,count);
|
ret = store_val_any(id,0,sfp,buf,count);
|
||||||
if (!ret) ret = count;
|
if (!ret) ret = count;
|
||||||
return ret;
|
return ret;
|
||||||
|
@ -298,6 +300,8 @@ static ssize_t store_val_custom(int id,struct device *class_dev,
|
||||||
struct pvr2_sysfs *sfp;
|
struct pvr2_sysfs *sfp;
|
||||||
int ret;
|
int ret;
|
||||||
sfp = (struct pvr2_sysfs *)class_dev->driver_data;
|
sfp = (struct pvr2_sysfs *)class_dev->driver_data;
|
||||||
|
pvr2_sysfs_trace("pvr2_sysfs(%p) store_val_custom(cid=%d) \"%.*s\"",
|
||||||
|
sfp,id,count,buf);
|
||||||
ret = store_val_any(id,1,sfp,buf,count);
|
ret = store_val_any(id,1,sfp,buf,count);
|
||||||
if (!ret) ret = count;
|
if (!ret) ret = count;
|
||||||
return ret;
|
return ret;
|
||||||
|
|
Loading…
Reference in a new issue