Sec S5pc210 Test Bd Driver ★

It sounds like you’re working with a (also known as Exynos 4210) on a test board—likely a development board or custom hardware for validating the SoC.

struct s5pc210_testbd_priv { void __iomem *reg_base; int board_rev; }; Sec S5pc210 Test Bd Driver

// Map test board control registers (example) res = platform_get_resource(pdev, IORESOURCE_MEM, 0); priv->reg_base = devm_ioremap_resource(&pdev->dev, res); if (IS_ERR(priv->reg_base)) return PTR_ERR(priv->reg_base); It sounds like you’re working with a (also

static struct platform_driver s5pc210_testbd_driver = { .probe = s5pc210_testbd_probe, .remove = s5pc210_testbd_remove, .driver = { .name = DRIVER_NAME, .of_match_table = s5pc210_testbd_dt_match, }, }; module_platform_driver(s5pc210_testbd_driver); reg_base = devm_ioremap_resource(&pdev-&gt

static int s5pc210_testbd_probe(struct platform_device *pdev) { struct s5pc210_testbd_priv *priv; struct resource *res;

Privacy Update
We use cookies to make interactions with our website and services easy and meaningful. Cookies help us better understand how our website is used and tailor advertising accordingly.

Accept