Lines Matching refs:halo_alg
1963 struct wmfw_halo_alg_hdr *halo_alg; in cs_dsp_halo_setup_algs() local
1992 len = (sizeof(*halo_alg) * n_algs) / sizeof(u32); in cs_dsp_halo_setup_algs()
1994 halo_alg = cs_dsp_read_algs(dsp, n_algs, mem, pos, len); in cs_dsp_halo_setup_algs()
1995 if (IS_ERR(halo_alg)) in cs_dsp_halo_setup_algs()
1996 return PTR_ERR(halo_alg); in cs_dsp_halo_setup_algs()
2001 i, be32_to_cpu(halo_alg[i].alg.id), in cs_dsp_halo_setup_algs()
2002 (be32_to_cpu(halo_alg[i].alg.ver) & 0xff0000) >> 16, in cs_dsp_halo_setup_algs()
2003 (be32_to_cpu(halo_alg[i].alg.ver) & 0xff00) >> 8, in cs_dsp_halo_setup_algs()
2004 be32_to_cpu(halo_alg[i].alg.ver) & 0xff, in cs_dsp_halo_setup_algs()
2005 be32_to_cpu(halo_alg[i].xm_base), in cs_dsp_halo_setup_algs()
2006 be32_to_cpu(halo_alg[i].ym_base)); in cs_dsp_halo_setup_algs()
2008 ret = cs_dsp_halo_create_regions(dsp, halo_alg[i].alg.id, in cs_dsp_halo_setup_algs()
2009 halo_alg[i].alg.ver, in cs_dsp_halo_setup_algs()
2010 halo_alg[i].xm_base, in cs_dsp_halo_setup_algs()
2011 halo_alg[i].ym_base); in cs_dsp_halo_setup_algs()
2017 kfree(halo_alg); in cs_dsp_halo_setup_algs()