コード例 #1
0
ファイル: ucode_loader.c プロジェクト: 020gzh/linux
void brcms_ucode_data_free(struct brcms_ucode *ucode)
{
	brcms_ucode_free_buf((void *)ucode->d11lcn0bsinitvals24);
	brcms_ucode_free_buf((void *)ucode->d11lcn0initvals24);
	brcms_ucode_free_buf((void *)ucode->d11lcn1bsinitvals24);
	brcms_ucode_free_buf((void *)ucode->d11lcn1initvals24);
	brcms_ucode_free_buf((void *)ucode->d11lcn2bsinitvals24);
	brcms_ucode_free_buf((void *)ucode->d11lcn2initvals24);
	brcms_ucode_free_buf((void *)ucode->d11n0absinitvals16);
	brcms_ucode_free_buf((void *)ucode->d11n0bsinitvals16);
	brcms_ucode_free_buf((void *)ucode->d11n0initvals16);
	brcms_ucode_free_buf((void *)ucode->bcm43xx_16_mimo);
	brcms_ucode_free_buf((void *)ucode->bcm43xx_24_lcn);
	brcms_ucode_free_buf((void *)ucode->bcm43xx_bommajor);
	brcms_ucode_free_buf((void *)ucode->bcm43xx_bomminor);
}
コード例 #2
0
ファイル: ucode_loader.c プロジェクト: CSCLOG/beaglebone
void brcms_ucode_data_free(void)
{
	brcms_ucode_free_buf((void *)d11lcn0bsinitvals24);
	brcms_ucode_free_buf((void *)d11lcn0initvals24);
	brcms_ucode_free_buf((void *)d11lcn1bsinitvals24);
	brcms_ucode_free_buf((void *)d11lcn1initvals24);
	brcms_ucode_free_buf((void *)d11lcn2bsinitvals24);
	brcms_ucode_free_buf((void *)d11lcn2initvals24);
	brcms_ucode_free_buf((void *)d11n0absinitvals16);
	brcms_ucode_free_buf((void *)d11n0bsinitvals16);
	brcms_ucode_free_buf((void *)d11n0initvals16);
	brcms_ucode_free_buf((void *)bcm43xx_16_mimo);
	brcms_ucode_free_buf((void *)bcm43xx_24_lcn);
	brcms_ucode_free_buf((void *)bcm43xx_bommajor);
	brcms_ucode_free_buf((void *)bcm43xx_bomminor);

	return;
}