Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ac34bbc3 authored by Bhumika Goyal's avatar Bhumika Goyal Committed by Martin Schwidefsky
Browse files

s390/cio: add const to bin_attribute structures



Add const to bin_attribute structures as they are only passed to the
functions device_{remove/create}_bin_file. The corresponding arguments
are of type const, so declare the structures to be const.

Cross compiled for s390 architecture.

Signed-off-by: default avatarBhumika Goyal <bhumirks@gmail.com>
Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
parent c7e85ae5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -143,7 +143,7 @@ static ssize_t chp_measurement_chars_read(struct file *filp,
				       sizeof(chp->cmg_chars));
}

static struct bin_attribute chp_measurement_chars_attr = {
static const struct bin_attribute chp_measurement_chars_attr = {
	.attr = {
		.name = "measurement_chars",
		.mode = S_IRUSR,
@@ -197,7 +197,7 @@ static ssize_t chp_measurement_read(struct file *filp, struct kobject *kobj,
	return count;
}

static struct bin_attribute chp_measurement_attr = {
static const struct bin_attribute chp_measurement_attr = {
	.attr = {
		.name = "measurement",
		.mode = S_IRUSR,