media: vidtv: fix service type

As the service currently broadcasts just audio, change the
service type to reflect that.

Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
Mauro Carvalho Chehab 2020-11-23 18:04:14 +01:00
parent 039b7caed1
commit 11f4933f7b
2 changed files with 2 additions and 1 deletions

View file

@ -81,7 +81,7 @@ struct vidtv_channel
s302m->service->descriptor = (struct vidtv_psi_desc *)
vidtv_psi_service_desc_init(NULL,
DIGITAL_TELEVISION_SERVICE,
DIGITAL_RADIO_SOUND_SERVICE,
name,
provider);
if (!s302m->service->descriptor)

View file

@ -220,6 +220,7 @@ enum service_running_status {
enum service_type {
/* see ETSI EN 300 468 v1.15.1 p. 77 */
DIGITAL_TELEVISION_SERVICE = 0x1,
DIGITAL_RADIO_SOUND_SERVICE = 0X2,
};
/**