Re: [PATCH 2/3] platform: arm64: Add a driver for the EC found on ASUS Glymur machines
From: Krzysztof Kozlowski
Date: Fri Sep 18 2026 - 07:46:16 EST
On Thu, Sep 17, 2026 at 12:54:57PM +0200, Konrad Dybcio wrote:
> +static int asus_glymur_ec_resume(struct device *dev)
> +{
> + return asus_glymur_ec_modern_standby(dev_get_drvdata(dev),
> + ASUS_QCOM_EC_MODERN_STANDBY_EXIT);
> +}
> +
> +static DEFINE_SIMPLE_DEV_PM_OPS(asus_glymur_ec_pm_ops,
> + asus_glymur_ec_suspend,
> + asus_glymur_ec_resume);
> +
> +static const struct of_device_id asus_glymur_ec_of_match[] = {
> + { .compatible = "asus,zenbook-a14-ux3407na-ec" },
> + { .compatible = "asus,zenbook-a16-ux3607oa-ec" },
Does this mean devices are compatible? If so should be expressed in the
bindings. If not, should be expressed in bindings commit msg, see
writing bindings docs.
Best regards,
Krzysztof