예제 #1
0
파일: bbm.c 프로젝트: CL0SeY/i957kernel
int BBM_TUNER_SELECT(HANDLE hDevice, u32 product, u32 band)
{
	int res = BBM_OK;

	res = tuner_select(hDevice, product, band);

	return res;
}
예제 #2
0
fci_s32 bbm_com_tuner_select(HANDLE handle, fci_u32 product, fci_u32 band)
{
    fci_s32 res = BBM_OK;

    res = tuner_select(handle, product, band);

    return res;
}
int bbm_com_tuner_select(HANDLE hDevice, u32 product, u32 band)
{
    int res = BBM_OK;

    res = tuner_select(hDevice, product, band);

    return res;
}
예제 #4
0
s32 bbm_com_tuner_select(HANDLE handle, DEVICEID devid, u32 product,
						u32 brodcast)
{
	s32 res;

	res = tuner_select(handle, devid, product, brodcast);

	return res;
}