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

Commit c94a8ff1 authored by Bhumika Goyal's avatar Bhumika Goyal Committed by Andy Shevchenko
Browse files

platform/x86: intel_mid_powerbtn: make mid_pb_ddata const



Make these const as they are only used during a copy operation.
Done using Coccinelle.

Signed-off-by: default avatarBhumika Goyal <bhumirks@gmail.com>
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
parent fe4e8d09
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -108,13 +108,13 @@ static irqreturn_t mid_pb_isr(int irq, void *dev_id)
	return IRQ_HANDLED;
}

static struct mid_pb_ddata mfld_ddata = {
static const struct mid_pb_ddata mfld_ddata = {
	.mirqlvl1_addr	= INTEL_MSIC_IRQLVL1MSK,
	.pbstat_addr	= INTEL_MSIC_PBSTATUS,
	.pbstat_mask	= MSIC_PB_LEVEL,
};

static struct mid_pb_ddata mrfld_ddata = {
static const struct mid_pb_ddata mrfld_ddata = {
	.mirqlvl1_addr	= BCOVE_IRQLVL1MSK,
	.pbstat_addr	= BCOVE_PBSTATUS,
	.pbstat_mask	= BCOVE_PB_LEVEL,