Skip to content

Commit 1d2b2a6

Browse files
committed
media: vidtv: fix the network ID range
As defined at ETSI TS 101 162, original network IDs up to 0xfebf are reserved for registration at dvb.org. Let's use, instead, an original network ID at the range 0xff00-0xffff, as this is for private temporary usage. As the same value is also used for the network ID, the range 0xff01-0xffff also fits better, as values lower than that depend if the network is used for satellite, terrestrial, cable of CI. While here, move the TS ID to the bridge code, where it is used, and change its value, as it was identical to the value previously used by network ID. While we could keep the same value, let's change it, just to make easier to check for the new code while reading it with DVB tools like dvbinspector. Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
1 parent b9e09e0 commit 1d2b2a6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/media/test-drivers/vidtv/vidtv_bridge.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@
2929
#define MUX_BUF_MAX_SZ (MUX_BUF_MIN_SZ * 10)
3030
#define TUNER_DEFAULT_ADDR 0x68
3131
#define DEMOD_DEFAULT_ADDR 0x60
32-
#define VIDTV_DEFAULT_NETWORK_ID 0x744
32+
#define VIDTV_DEFAULT_NETWORK_ID 0xff44
3333
#define VIDTV_DEFAULT_NETWORK_NAME "LinuxTV.org"
34+
#define VIDTV_DEFAULT_TS_ID 0x4081
3435

3536
/*
3637
* The LNBf fake parameters here are the ranges used by an

drivers/media/test-drivers/vidtv/vidtv_common.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
#define CLOCK_UNIT_27MHZ 27000000
1717
#define VIDTV_SLEEP_USECS 10000
1818
#define VIDTV_MAX_SLEEP_USECS (2 * VIDTV_SLEEP_USECS)
19-
#define VIDTV_DEFAULT_TS_ID 0x744
2019

2120
u32 vidtv_memcpy(void *to,
2221
size_t to_offset,

0 commit comments

Comments
 (0)