sh-pfc: Remove unneeded const keywords

Two integer field structures are needlesly defined as const. Remove the
const keyword.

Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Tested-by: Yusuke Goda <yusuke.goda.sx@renesas.com>
This commit is contained in:
Laurent Pinchart 2013-07-14 20:04:53 +02:00
parent 487bca0390
commit 94e7460138
1 changed files with 2 additions and 2 deletions

View File

@ -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;
};