Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c7bbaaea authored by Satish Kodishala's avatar Satish Kodishala
Browse files

radio: iris: Fixed an issue with search stations list



Due to improper boundary checks, RDS search and search
station list were getting excluded.
Fixed the boundary check to include RDS seach and search
station list.

Change-Id: Ia2d7cc8a1bbf8e861a0e23dfc8ca56181b42b810
CRs-fixed: 597996
Signed-off-by: default avatarSatish Kodishala <skodisha@codeaurora.org>
parent a17b59e9
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
/*
/*
 *
 *
 * Copyright (c) 2011-2013 The Linux Foundation. All rights reserved.
 * Copyright (c) 2011-2014 The Linux Foundation. All rights reserved.
 *
 *
 * This file is based on include/net/bluetooth/hci_core.h
 * This file is based on include/net/bluetooth/hci_core.h
 *
 *
@@ -38,7 +38,7 @@ const unsigned char MAX_TX_TONE_VAL = 0x07;
const unsigned char MIN_HARD_MUTE_VAL = 0x00;
const unsigned char MIN_HARD_MUTE_VAL = 0x00;
const unsigned char MAX_HARD_MUTE_VAL = 0x03;
const unsigned char MAX_HARD_MUTE_VAL = 0x03;
const unsigned char MIN_SRCH_MODE = 0x00;
const unsigned char MIN_SRCH_MODE = 0x00;
const unsigned char MAX_SRCH_MODE = 0x01;
const unsigned char MAX_SRCH_MODE = 0x09;
const unsigned char MIN_SCAN_DWELL = 0x00;
const unsigned char MIN_SCAN_DWELL = 0x00;
const unsigned char MAX_SCAN_DWELL = 0x0F;
const unsigned char MAX_SCAN_DWELL = 0x0F;
const unsigned char MIN_SIG_TH = 0x00;
const unsigned char MIN_SIG_TH = 0x00;