Skip to content

Commit

Permalink
ALSA: drivers: mpu401: constify pnp_device_id
Browse files Browse the repository at this point in the history
pnp_device_id are not supposed to change at runtime. All functions
working with pnp_device_id provided by <linux/pnp.h> work with
const pnp_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 fdbf048 commit 1491c68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/drivers/mpu401/mpu401.c
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ static struct platform_driver snd_mpu401_driver = {

#define IO_EXTENT 2

static struct pnp_device_id snd_mpu401_pnpids[] = {
static const struct pnp_device_id snd_mpu401_pnpids[] = {
{ .id = "PNPb006" },
{ .id = "" }
};
Expand Down

0 comments on commit 1491c68

Please sign in to comment.