From 1ae3f170c95a5d7c4f5d19166c6fa04ec18ac298 Mon Sep 17 00:00:00 2001 From: Allan Stirling Date: Thu, 7 Jul 2005 17:57:51 -0700 Subject: [PATCH] --- yaml --- r: 4319 b: refs/heads/master c: 3dff919425dd79954447e6ab39807b4c27ba3089 h: refs/heads/master i: 4317: 4a1d4936fedd232048744e28a9605297419cedf6 4315: ac146499ba544130d7cc99d0392ef65c8af304e2 4311: 785072660453d0dc04c6b835e51f4a0cd78b1142 4303: 9c8639dc283512e6096e73296ce893b218558408 4287: 9ae66755cc4b152456c53757dcfcc5afffa5fae8 v: v3 --- [refs] | 2 +- trunk/drivers/media/dvb/bt8xx/dst.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/[refs] b/[refs] index d4df59de3ac3..0bda1e76b3b2 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 7d53421c6adce47d067b834c605daeafe1ff9356 +refs/heads/master: 3dff919425dd79954447e6ab39807b4c27ba3089 diff --git a/trunk/drivers/media/dvb/bt8xx/dst.c b/trunk/drivers/media/dvb/bt8xx/dst.c index 1f97c37fe9a6..d8f4200065ee 100644 --- a/trunk/drivers/media/dvb/bt8xx/dst.c +++ b/trunk/drivers/media/dvb/bt8xx/dst.c @@ -325,12 +325,12 @@ static int dst_set_polarization(struct dst_state *state) switch (state->voltage) { case SEC_VOLTAGE_13: // vertical printk("%s: Polarization=[Vertical]\n", __FUNCTION__); - state->tx_tuna[8] |= 0x40; //1 + state->tx_tuna[8] &= ~0x40; //1 break; case SEC_VOLTAGE_18: // horizontal printk("%s: Polarization=[Horizontal]\n", __FUNCTION__); - state->tx_tuna[8] =~ 0x40; // 0 + state->tx_tuna[8] |= 0x40; // 0 break; case SEC_VOLTAGE_OFF: