Commit 11f4933f authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab
Browse files

media: vidtv: fix service type



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

Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent 039b7cae
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)
+1 −0
Original line number Diff line number Diff line
@@ -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,
};

/**