Re: [PATCH 4/7] bus: ti-sysc: Add minimal TI sysc interconnect target driver

From: Tony Lindgren
Date: Fri Oct 13 2017 - 13:51:55 EST


* Tony Lindgren <tony@xxxxxxxxxxx> [170929 15:35]:
> +static struct platform_driver sysc_driver = {
> + .probe = sysc_probe,
> + .driver = {
> + .name = "ti-sysc",
> + .of_match_table = sysc_match,
> + .pm = &sysc_pm_ops,
> + },
> +};
> +module_platform_driver(sysc_driver);

We also need add remove() to have unbind and bind work
properly, here's an incremental patch to add that.

Regards,

Tony

8< -------------------------