Message ID | 20250226220414.343659-1-peter.griffin@linaro.org |
---|---|
Headers | show |
Series | ufs-exynos fixes for gs101 | expand |
On 2/26/25 2:04 PM, Peter Griffin wrote: > +static void exynos_ufs_exit(struct ufs_hba *hba) > +{ > + struct exynos_ufs *ufs = ufshcd_get_variant(hba); > + > + phy_power_off(ufs->phy); > + phy_exit(ufs->phy); > +} > + > + For future patches, please follow the convention that is used elsewhere in the kernel and separate functions with a single blank line instead of two. Thanks, Bart.
Hi Bart, Thanks for your review feedback! On Fri, 28 Feb 2025 at 19:20, Bart Van Assche <bvanassche@acm.org> wrote: > > On 2/26/25 2:04 PM, Peter Griffin wrote: > > +static void exynos_ufs_exit(struct ufs_hba *hba) > > +{ > > + struct exynos_ufs *ufs = ufshcd_get_variant(hba); > > + > > + phy_power_off(ufs->phy); > > + phy_exit(ufs->phy); > > +} > > + > > + > > For future patches, please follow the convention that is used elsewhere > in the kernel and separate functions with a single blank line instead of > two. That was an oversight on my part, will fix. Thanks, Peter