diff options
Diffstat (limited to 'sound/aoa/fabrics')
-rw-r--r-- | sound/aoa/fabrics/snd-aoa-fabric-layout.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/aoa/fabrics/snd-aoa-fabric-layout.c b/sound/aoa/fabrics/snd-aoa-fabric-layout.c index 1b94ba6dd279..7e3880901c61 100644 --- a/sound/aoa/fabrics/snd-aoa-fabric-layout.c +++ b/sound/aoa/fabrics/snd-aoa-fabric-layout.c | |||
@@ -724,7 +724,7 @@ static int check_codec(struct aoa_codec *codec, | |||
724 | struct layout_dev *ldev, | 724 | struct layout_dev *ldev, |
725 | struct codec_connect_info *cci) | 725 | struct codec_connect_info *cci) |
726 | { | 726 | { |
727 | u32 *ref; | 727 | const u32 *ref; |
728 | char propname[32]; | 728 | char propname[32]; |
729 | struct codec_connection *cc; | 729 | struct codec_connection *cc; |
730 | 730 | ||
@@ -732,7 +732,7 @@ static int check_codec(struct aoa_codec *codec, | |||
732 | if (codec->node && (strcmp(codec->node->name, "codec") == 0)) { | 732 | if (codec->node && (strcmp(codec->node->name, "codec") == 0)) { |
733 | snprintf(propname, sizeof(propname), | 733 | snprintf(propname, sizeof(propname), |
734 | "platform-%s-codec-ref", codec->name); | 734 | "platform-%s-codec-ref", codec->name); |
735 | ref = (u32*)get_property(ldev->sound, propname, NULL); | 735 | ref = get_property(ldev->sound, propname, NULL); |
736 | if (!ref) { | 736 | if (!ref) { |
737 | printk(KERN_INFO "snd-aoa-fabric-layout: " | 737 | printk(KERN_INFO "snd-aoa-fabric-layout: " |
738 | "required property %s not present\n", propname); | 738 | "required property %s not present\n", propname); |