Example #1
0
int BBM_TUNER_SELECT(HANDLE hDevice, u32 product, u32 band)
{
	int res = BBM_OK;

	res = tuner_select(hDevice, product, band);

	return res;
}
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;
}
s32 bbm_com_tuner_select(HANDLE handle, DEVICEID devid, u32 product,
						u32 brodcast)
{
	s32 res;

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

	return res;
}