brcm2708: update linux 4.4 patches to latest version
[openwrt/staging/dedeckeh.git] / target / linux / brcm2708 / patches-4.4 / 0309-Revert-bcm2835-log-which-channel-map-is-set.patch
1 From 593366c81d96fb54152093ab5ca3d62607440cf8 Mon Sep 17 00:00:00 2001
2 From: popcornmix <popcornmix@gmail.com>
3 Date: Fri, 29 Apr 2016 17:27:33 +0100
4 Subject: [PATCH] Revert "bcm2835: log which channel map is set"
5
6 This reverts commit cd560b8658868d9652ab31754e02f86daf6831ba.
7 ---
8 sound/arm/bcm2835-vchiq.c | 5 -----
9 1 file changed, 5 deletions(-)
10
11 --- a/sound/arm/bcm2835-vchiq.c
12 +++ b/sound/arm/bcm2835-vchiq.c
13 @@ -596,11 +596,8 @@ int bcm2835_audio_set_params(bcm2835_als
14 instance->result = -1;
15
16 if (alsa_stream->chip->cea_chmap >= 0) {
17 - LOG_INFO("Using application requested channel map: %d\n",
18 - alsa_stream->chip->cea_chmap);
19 chmap_value = (unsigned)alsa_stream->chip->cea_chmap << 24;
20 } else {
21 - LOG_INFO("Using fallback channel map.\n");
22 /* fallback layouts for applications which do not use chmap API */
23 chmap_value = 0x00;
24 switch (channels) {
25 @@ -617,8 +614,6 @@ int bcm2835_audio_set_params(bcm2835_als
26 for (i = 0; i < 8; i++)
27 chmap_value |= alsa_stream->chip->map_channels[i] << (i * 3);
28
29 - LOG_INFO("Requesting AUDS channel map: 0x%lx\n", (long)chmap_value);
30 -
31 m.type = VC_AUDIO_MSG_TYPE_CONFIG;
32 m.u.config.channels = channels;
33 m.u.config.samplerate = samplerate;