Commit 420fb223 authored by Javier Carrasco's avatar Javier Carrasco Committed by Dmitry Baryshkov
Browse files

drm/sprd: Constify struct regmap_bus

parent 6a922712
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -209,7 +209,7 @@ static int regmap_tst_io_read(void *context, u32 reg, u32 *val)
	return 0;
}

static struct regmap_bus regmap_tst_io = {
static const struct regmap_bus regmap_tst_io = {
	.reg_write = regmap_tst_io_write,
	.reg_read = regmap_tst_io_read,
};