mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 00:20:53 +07:00
[PATCH] w1: fix build issues
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
ca775c629a
commit
c7b2b2a723
@ -37,14 +37,11 @@ MODULE_AUTHOR("Evgeniy Polyakov <johnpol@2ka.mipt.ru>");
|
|||||||
MODULE_DESCRIPTION("Driver for 1-wire Dallas network protocol, 64bit memory family.");
|
MODULE_DESCRIPTION("Driver for 1-wire Dallas network protocol, 64bit memory family.");
|
||||||
|
|
||||||
static ssize_t w1_smem_read_name(struct device *, struct device_attribute *attr, char *);
|
static ssize_t w1_smem_read_name(struct device *, struct device_attribute *attr, char *);
|
||||||
static ssize_t w1_smem_read_val(struct device *, struct device_attribute *attr, char *);
|
|
||||||
static ssize_t w1_smem_read_bin(struct kobject *, char *, loff_t, size_t);
|
static ssize_t w1_smem_read_bin(struct kobject *, char *, loff_t, size_t);
|
||||||
|
|
||||||
static struct w1_family_ops w1_smem_fops = {
|
static struct w1_family_ops w1_smem_fops = {
|
||||||
.rname = &w1_smem_read_name,
|
.rname = &w1_smem_read_name,
|
||||||
.rbin = &w1_smem_read_bin,
|
.rbin = &w1_smem_read_bin,
|
||||||
.rval = &w1_smem_read_val,
|
|
||||||
.rvalname = "id",
|
|
||||||
};
|
};
|
||||||
|
|
||||||
static ssize_t w1_smem_read_name(struct device *dev, struct device_attribute *attr, char *buf)
|
static ssize_t w1_smem_read_name(struct device *dev, struct device_attribute *attr, char *buf)
|
||||||
@ -54,19 +51,6 @@ static ssize_t w1_smem_read_name(struct device *dev, struct device_attribute *at
|
|||||||
return sprintf(buf, "%s\n", sl->name);
|
return sprintf(buf, "%s\n", sl->name);
|
||||||
}
|
}
|
||||||
|
|
||||||
static ssize_t w1_smem_read_val(struct device *dev, struct device_attribute *attr, char *buf)
|
|
||||||
{
|
|
||||||
struct w1_slave *sl = container_of(dev, struct w1_slave, dev);
|
|
||||||
int i;
|
|
||||||
ssize_t count = 0;
|
|
||||||
|
|
||||||
for (i = 0; i < 8; ++i)
|
|
||||||
count += sprintf(buf + count, "%02x ", ((u8 *)&sl->reg_num)[i]);
|
|
||||||
count += sprintf(buf + count, "\n");
|
|
||||||
|
|
||||||
return count;
|
|
||||||
}
|
|
||||||
|
|
||||||
static ssize_t w1_smem_read_bin(struct kobject *kobj, char *buf, loff_t off, size_t count)
|
static ssize_t w1_smem_read_bin(struct kobject *kobj, char *buf, loff_t off, size_t count)
|
||||||
{
|
{
|
||||||
struct w1_slave *sl = container_of(container_of(kobj, struct device, kobj),
|
struct w1_slave *sl = container_of(container_of(kobj, struct device, kobj),
|
||||||
|
Loading…
Reference in New Issue
Block a user