GMCSCO Media Group

Sec S5pc210 Test Bd Driver <FHD 360p>

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.

static int s5pc210_testbd_remove(struct platform_device *pdev) { dev_info(&pdev->dev, "Removing S5PC210 test board driver\n"); return 0; } Sec S5pc210 Test Bd Driver

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); It sounds like you’re working with a (also

priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL); if (!priv) return -ENOMEM; "Removing S5PC210 test board driver\n")

struct s5pc210_testbd_priv { void __iomem *reg_base; int board_rev; };

Scroll to Top