From: Marc Gonzalez Date: Tue, 25 Jul 2017 09:08:15 +0000 (+0200) Subject: net: phy: Remove trailing semicolon in macro definition X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=2eaa38d9fcba5294182268b8d11770cf3fdc9bc9;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git net: phy: Remove trailing semicolon in macro definition Commit e5a03bfd873c2 ("phy: Add an mdio_device structure") introduced a spurious trailing semicolon. Remove it. Signed-off-by: Marc Gonzalez Signed-off-by: David S. Miller --- diff --git a/include/linux/phy.h b/include/linux/phy.h index 2a9567bb8186..0bb5b212ab42 100644 --- a/include/linux/phy.h +++ b/include/linux/phy.h @@ -830,7 +830,7 @@ static inline int phy_read_status(struct phy_device *phydev) dev_err(&_phydev->mdio.dev, format, ##args) #define phydev_dbg(_phydev, format, args...) \ - dev_dbg(&_phydev->mdio.dev, format, ##args); + dev_dbg(&_phydev->mdio.dev, format, ##args) static inline const char *phydev_name(const struct phy_device *phydev) {