Skip to content

Commit

Permalink
ALSA: es1688: constify pnp_card_device_id
Browse files Browse the repository at this point in the history
pnp_card_device_id are not supposed to change at runtime. All functions
working with pnp_card_device_id provided by <linux/pnp.h> work with
const pnp_card_device_id. So mark the non-const structs as const.

Signed-off-by: Arvind Yadav <[email protected]>
Signed-off-by: Takashi Iwai <[email protected]>
  • Loading branch information
ArvindYadavCs authored and tiwai committed Aug 17, 2017
1 parent 3f41b75 commit 4f624a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/isa/es1688/es1688.c
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ static int snd_es968_pnp_resume(struct pnp_card_link *pcard)
}
#endif

static struct pnp_card_device_id snd_es968_pnpids[] = {
static const struct pnp_card_device_id snd_es968_pnpids[] = {
{ .id = "ESS0968", .devs = { { "@@@0968" }, } },
{ .id = "ESS0968", .devs = { { "ESS0968" }, } },
{ .id = "", } /* end */
Expand Down

0 comments on commit 4f624a1

Please sign in to comment.