예제 #1
0
파일: bbm.c 프로젝트: CL0SeY/i957kernel
int BBM_CHANNEL_DESELECT(HANDLE hDevice, u8 subChId, u8 svcChId)
{
	int res;

	res = fc8050_channel_deselect(hDevice, subChId, svcChId);

	return res;
}
예제 #2
0
int fc8050_data_deselect(HANDLE hDevice, fci_u8 subChId, fci_u8 svcChId)
{
    if(fc8050_channel_deselect(hDevice, subChId, svcChId) != BBM_OK) {
        return BBM_NOK;
    }
    bbm_write(hDevice, BBM_BUF_CH0_SUBCH+svcChId, 0);
    return BBM_OK;
}
예제 #3
0
int fc8050_video_deselect(HANDLE hDevice, fci_u8 subChId, fci_u8 svcChId, fci_u8 cdiId)
{
    if(fc8050_channel_deselect(hDevice, subChId,svcChId) != BBM_OK) {
        return BBM_NOK;
    }
    bbm_write(hDevice, BBM_BUF_CH0_SUBCH+svcChId, 0x00);
    bbm_write(hDevice, BBM_CDI0_SUBCH_EN+cdiId,   0x00);
    return BBM_OK;
}
int bbm_com_channel_deselect(
    HANDLE hDevice, u8 subchannel_id, u8 service_channel_id)
{
    int res;

    res = fc8050_channel_deselect(
              hDevice, subchannel_id, service_channel_id);

    return res;
}