Home
last modified time | relevance | path

Searched refs:tfp (Results 1 – 2 of 2) sorted by relevance

/linux/drivers/gpu/drm/i915/display/
H A Ddvo_tfp410.c96 struct tfp410_priv *tfp = dvo->dev_priv; in tfp410_readb() local
124 if (!tfp->quiet) { in tfp410_readb()
133 struct tfp410_priv *tfp = dvo->dev_priv; in tfp410_writeb() local
149 if (!tfp->quiet) { in tfp410_writeb()
173 struct tfp410_priv *tfp; in tfp410_init() local
176 tfp = kzalloc(sizeof(*tfp), GFP_KERNEL); in tfp410_init()
177 if (tfp == NULL) in tfp410_init()
181 dvo->dev_priv = tfp; in tfp410_init()
182 tfp->quiet = true; in tfp410_init()
197 tfp->quiet = false; in tfp410_init()
[all …]
/linux/drivers/net/ethernet/mellanox/mlx5/core/
H A Dpagealloc.c131 struct fw_page *tfp; in insert_page() local
142 tfp = rb_entry(parent, struct fw_page, rb_node); in insert_page()
143 if (tfp->addr < addr) in insert_page()
145 else if (tfp->addr > addr) in insert_page()
175 struct fw_page *tfp; in find_fw_page() local
184 tfp = rb_entry(tmp, struct fw_page, rb_node); in find_fw_page()
185 if (tfp->addr < addr) { in find_fw_page()
187 } else if (tfp->addr > addr) { in find_fw_page()
190 result = tfp; in find_fw_page()