Commit 94e74601 authored by Laurent Pinchart's avatar Laurent Pinchart

sh-pfc: Remove unneeded const keywords

Two integer field structures are needlesly defined as const. Remove the
const keyword.
Signed-off-by: default avatarLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Tested-by: default avatarYusuke Goda <yusuke.goda.sx@renesas.com>
parent 487bca03
......@@ -30,7 +30,7 @@ enum {
#define SH_PFC_PIN_CFG_PULL_DOWN (1 << 3)
struct sh_pfc_pin {
const pinmux_enum_t enum_id;
pinmux_enum_t enum_id;
const char *name;
unsigned int configs;
};
......@@ -64,7 +64,7 @@ struct sh_pfc_function {
};
struct pinmux_func {
const pinmux_enum_t enum_id;
pinmux_enum_t enum_id;
const char *name;
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment