419
- 收藏
- 点赞
- 分享
- 举报
参数传递问题
struct ov426 {
struct i2c_client *client;
struct clk *xvclk;
struct gpio_desc *power_gpio;
struct gpio_desc *reset_gpio;
..................................
}
static int ov426_reinit(struct i2c_client *client)
{
struct device *dev = &client->dev;
..................................
}
static DEVICE_ATTR(my_attr, S_IRUGO | S_IWUSR, my_attr_show, my_attr_store);
int add_sysfs_interfaces(struct device *dev)
{
int result;
struct class *my_class;
my_class = class_create(THIS_MODULE, "my");
if (IS_ERR(my_class)) {
pr_err("Failed to create class\n");
return PTR_ERR(my_class);
}
dev = device_create(my_class, NULL, MKDEV(0, 0), NULL, "sensor");
result = device_create_file(dev, &dev_attr_my_attr);
if (result) {
pr_err("Failed to create sysfs file\n");
class_destroy(my_class);
return result;
}
return 0;
}
static ssize_t my_attr_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
{
int ret = -1;
struct i2c_client *client;
client = container_of(dev, struct i2c_client, dev);
switch (buf[0])
{
case '0':
mode = 0;
ret = count;
ov426_reinit(client);
break;
case '1':
mode = 1;
ret = count;
ov426_reinit(client);
break;
default:
printk(KERN_INFO "%s: err paramater\n", __func__);
break;
}
return ret;
}
代码逻辑这样,如果我要在my_attr_store函数中调用ov426_reinit函数时,参数应该怎么传递啊,求帮助,这一块有点混乱
我来回答
回答1个
时间排序
认可量排序
认可0
或将文件直接拖到这里
悬赏:
E币
网盘
* 网盘链接:
* 提取码:
悬赏:
E币
Markdown 语法
- 加粗**内容**
- 斜体*内容*
- 删除线~~内容~~
- 引用> 引用内容
- 代码`代码`
- 代码块```编程语言↵代码```
- 链接[链接标题](url)
- 无序列表- 内容
- 有序列表1. 内容
- 缩进内容
- 图片![alt](url)
相关问答
-
2015-01-29 10:16:54
-
2018-10-11 09:08:49
-
12020-01-07 11:14:09
-
2013-11-28 22:03:02
-
2018-08-23 15:48:19
-
2014-05-14 09:00:18
-
2020-03-24 19:09:32
-
2018-12-19 11:14:19
-
2020-12-06 23:04:03
-
2018-02-05 13:34:20
-
2020-05-21 09:50:15
-
2015-06-16 13:58:23
-
2020-11-03 11:56:45
-
2015-01-18 15:28:17
-
2018-12-09 10:51:31
-
2020-04-23 18:27:38
-
2019-05-14 16:24:15
-
2019-05-14 16:18:59
-
2023-07-17 17:47:42
无更多相似问答 去提问
点击登录
-- 积分
-- E币
提问
—
收益
—
被采纳
—
我要提问
切换马甲
上一页
下一页
悬赏问答
-
5SS928的emmc有32GB,bootargs设置使用16GB,但是为啥能用的只有rootfs的大小
-
33SS928怎样烧写ubuntu系统
-
10ToolPlatform下载rootfs提示网络失败
-
10谁有GK7205V500的SDK
-
5Hi3516CV610 烧录不进去
-
10Hi3559AV100 芯片硬解码h265编码格式的视频时出现视频播放错误,解码错误信息 s32PackErr:码流有错
-
5海思SS928 / SD3403的sample_venc.c摄像头编码Demo中,采集到的摄像头的YUV数据在哪个相关的函数中?
-
5海鸥派openEuler无法启动网卡,连接WIFI存在问题
-
66有没有ISP相关的巨佬帮忙看看SS928对接IMX347的图像问题
-
50求助hi3559与FPGA通过SLVS-EC接口对接问题
举报反馈
举报类型
- 内容涉黄/赌/毒
- 内容侵权/抄袭
- 政治相关
- 涉嫌广告
- 侮辱谩骂
- 其他
详细说明
提醒
你的问题还没有最佳答案,是否结题,结题后将扣除20%的悬赏金
取消
确认
提醒
你的问题还没有最佳答案,是否结题,结题后将根据回答情况扣除相应悬赏金(1回答=1E币)
取消
确认