Devicetree
 help / color / mirror / Atom feed
From: sashiko-bot@kernel.org
To: dongxuyang@eswincomputing.com
Cc: conor+dt@kernel.org, devicetree@vger.kernel.org, robh@kernel.org
Subject: Re: [PATCH v13 3/5] pwm: dwc: add of/platform support
Date: Fri, 24 Jul 2026 08:57:15 +0000	[thread overview]
Message-ID: <20260724085715.9847C1F00A3F@smtp.kernel.org> (raw)
In-Reply-To: <20260724084346.1690-1-dongxuyang@eswincomputing.com>

Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [Medium] Module autoloading for non-OF setups will fail due to a module alias mismatch.
--

--- Patch [3]: [PATCH v13 3/5] pwm: dwc: add of/platform support ---
commit efa310f451f843a8ed2f095d6d6d3c443510ca1a
Author: Xuyang Dong <dongxuyang@eswincomputing.com>

pwm: dwc: add of/platform support

This commit adds platform and OF-based probing support for the dwc PWM
controller, allowing it to be used in non-PCI systems. It implements polarity
control using the timer's dual load registers and updates clock and runtime
PM state management.

> diff --git a/drivers/pwm/pwm-dwc-of.c b/drivers/pwm/pwm-dwc-of.c
> new file mode 100644
> index 0000000000000..4956dd36f93ad
> --- /dev/null
> +++ b/drivers/pwm/pwm-dwc-of.c

[ ... ]

> +static struct platform_driver dwc_pwm_plat_driver = {
> +	.driver = {
> +		.name = "dwc-pwm",
> +		.pm = pm_ptr(&dwc_pwm_pm_ops),
> +		.of_match_table = dwc_pwm_dt_ids,
> +	},
> +	.probe = dwc_pwm_plat_probe,
> +	.remove = dwc_pwm_plat_remove,
> +};
> +
> +module_platform_driver(dwc_pwm_plat_driver);
> +
> +MODULE_ALIAS("platform:dwc-pwm-of");

[Severity: Medium]
Does this module alias mismatch prevent automatic module loading on non-OF
setups?

The platform driver registers its name as "dwc-pwm", which means a system
without Device Tree will emit a uevent with MODALIAS=platform:dwc-pwm. Since
the provided MODULE_ALIAS is "platform:dwc-pwm-of", udev will likely fail to
find and load this module automatically.

> +MODULE_AUTHOR("Ben Dooks <ben.dooks@codethink.co.uk>");
> +MODULE_DESCRIPTION("DesignWare PWM Controller");
> +MODULE_LICENSE("GPL");

-- 
Sashiko AI review · https://sashiko.dev/#/patchset/20260724084153.1473-1-dongxuyang@eswincomputing.com?part=3

  reply	other threads:[~2026-07-24  8:57 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-07-24  8:41 [PATCH v13 0/5] Update designware pwm driver dongxuyang
2026-07-24  8:43 ` [PATCH v13 1/5] dt-bindings: pwm: dwc: Document optional resets property dongxuyang
2026-07-24  8:53   ` sashiko-bot
2026-07-24  8:43 ` [PATCH v13 2/5] dt-bindings: pwm: dwc: Add eswin compatible dongxuyang
2026-07-24  8:56   ` sashiko-bot
2026-07-24  8:43 ` [PATCH v13 3/5] pwm: dwc: add of/platform support dongxuyang
2026-07-24  8:57   ` sashiko-bot [this message]
2026-07-24  8:44 ` [PATCH v13 4/5] dt-bindings: timer: dwc: Update resets property items dongxuyang
2026-07-24  8:55   ` sashiko-bot
2026-07-24  8:44 ` [PATCH v13 5/5] clocksource: dw_apb_timer: Use reset array API to handle all resets dongxuyang
2026-07-24  8:55   ` sashiko-bot

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260724085715.9847C1F00A3F@smtp.kernel.org \
    --to=sashiko-bot@kernel.org \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=dongxuyang@eswincomputing.com \
    --cc=robh@kernel.org \
    --cc=sashiko-reviews@lists.linux.dev \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox