drivers/fsi: add const to bin_attribute structures
Declare bin_attribute structures as const as they are only passed as an argument to the function device_create_bin_file. This argument is of type const, so declare the structure as const. Signed-off-by: Bhumika Goyal <bhumirks@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
8f3addf1b4
commit
061c0958de
@ -475,7 +475,7 @@ static ssize_t fsi_slave_sysfs_raw_write(struct file *file,
|
|||||||
return count;
|
return count;
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct bin_attribute fsi_slave_raw_attr = {
|
static const struct bin_attribute fsi_slave_raw_attr = {
|
||||||
.attr = {
|
.attr = {
|
||||||
.name = "raw",
|
.name = "raw",
|
||||||
.mode = 0600,
|
.mode = 0600,
|
||||||
@ -499,7 +499,7 @@ static ssize_t fsi_slave_sysfs_term_write(struct file *file,
|
|||||||
return count;
|
return count;
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct bin_attribute fsi_slave_term_attr = {
|
static const struct bin_attribute fsi_slave_term_attr = {
|
||||||
.attr = {
|
.attr = {
|
||||||
.name = "term",
|
.name = "term",
|
||||||
.mode = 0200,
|
.mode = 0200,
|
||||||
|
Loading…
Reference in New Issue
Block a user