Home
last modified time | relevance | path

Searched refs:base_dir (Results 1 – 4 of 4) sorted by relevance

/drivers/pinctrl/pxa/
Dpinctrl-pxa25x.c216 void __iomem *base_dir[4]; in pxa25x_pinctrl_probe() local
223 base_dir[0] = devm_platform_ioremap_resource(pdev, 1); in pxa25x_pinctrl_probe()
224 if (IS_ERR(base_dir[0])) in pxa25x_pinctrl_probe()
225 return PTR_ERR(base_dir[0]); in pxa25x_pinctrl_probe()
227 base_dir[3] = devm_platform_ioremap_resource(pdev, 2); in pxa25x_pinctrl_probe()
228 if (IS_ERR(base_dir[3])) in pxa25x_pinctrl_probe()
229 return PTR_ERR(base_dir[3]); in pxa25x_pinctrl_probe()
238 base_dir[i] = base_dir[0] + sizeof(base_dir[0]) * i; in pxa25x_pinctrl_probe()
243 base_af, base_dir, base_sleep); in pxa25x_pinctrl_probe()
Dpinctrl-pxa27x.c508 void __iomem *base_dir[4]; in pxa27x_pinctrl_probe() local
515 base_dir[0] = devm_platform_ioremap_resource(pdev, 1); in pxa27x_pinctrl_probe()
516 if (IS_ERR(base_dir[0])) in pxa27x_pinctrl_probe()
517 return PTR_ERR(base_dir[0]); in pxa27x_pinctrl_probe()
519 base_dir[3] = devm_platform_ioremap_resource(pdev, 2); in pxa27x_pinctrl_probe()
520 if (IS_ERR(base_dir[3])) in pxa27x_pinctrl_probe()
521 return PTR_ERR(base_dir[3]); in pxa27x_pinctrl_probe()
530 base_dir[i] = base_dir[0] + sizeof(base_dir[0]) * i; in pxa27x_pinctrl_probe()
535 base_af, base_dir, base_sleep); in pxa27x_pinctrl_probe()
/drivers/crypto/intel/qat/qat_common/
Dadf_heartbeat_dbgfs.c164 hb->dbgfs.base_dir = debugfs_create_dir("heartbeat", accel_dev->debugfs_dir); in adf_heartbeat_dbgfs_add()
165 hb->dbgfs.status = debugfs_create_file("status", 0400, hb->dbgfs.base_dir, in adf_heartbeat_dbgfs_add()
167 hb->dbgfs.sent = debugfs_create_file("queries_sent", 0400, hb->dbgfs.base_dir, in adf_heartbeat_dbgfs_add()
169 hb->dbgfs.failed = debugfs_create_file("queries_failed", 0400, hb->dbgfs.base_dir, in adf_heartbeat_dbgfs_add()
171 hb->dbgfs.cfg = debugfs_create_file("config", 0600, hb->dbgfs.base_dir, in adf_heartbeat_dbgfs_add()
191 debugfs_remove(hb->dbgfs.base_dir); in adf_heartbeat_dbgfs_rm()
192 hb->dbgfs.base_dir = NULL; in adf_heartbeat_dbgfs_rm()
Dadf_heartbeat.h33 struct dentry *base_dir; member