1
0
Fork 0

ALSA: aoa: constify of_device_id array

of_device_id is always used as const.
(See driver.of_match_table and open firmware functions)

Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
wifi-calibration
Fabian Frederick 2015-03-18 17:48:56 +01:00 committed by Takashi Iwai
parent 1aa9a4ea4f
commit b24062bda7
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ module_param(force, int, 0444);
MODULE_PARM_DESC(force, "Force loading i2sbus even when"
" no layout-id property is present");
static struct of_device_id i2sbus_match[] = {
static const struct of_device_id i2sbus_match[] = {
{ .name = "i2s" },
{ }
};