[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20190903222346.42583-1-moritzf@google.com>
Date:   Tue,  3 Sep 2019 15:23:46 -0700
From:   Moritz Fischer <moritzf@...gle.com>
To:     linux-kernel@...r.kernel.org
Cc:     netdev@...r.kernel.org, hkallweit1@...il.com, davem@...emloft.net,
        Moritz Fischer <mdf@...nel.org>,
        Florian Fainelli <f.fainelli@...il.com>
Subject: [PATCH v2] net: fixed_phy: Add forward declaration for struct gpio_desc;
From: Moritz Fischer <mdf@...nel.org>
Add forward declaration for struct gpio_desc in order to address
the following:
./include/linux/phy_fixed.h:48:17: error: 'struct gpio_desc' declared inside parameter list [-Werror]
./include/linux/phy_fixed.h:48:17: error: its scope is only this definition or declaration, which is probably not what you want [-Werror]
Fixes: 71bd106d2567 ("net: fixed-phy: Add
fixed_phy_register_with_gpiod() API")
Reviewed-by: Florian Fainelli <f.fainelli@...il.com>
Signed-off-by: Moritz Fischer <mdf@...nel.org>
---
 include/linux/phy_fixed.h | 1 +
 1 file changed, 1 insertion(+)
diff --git a/include/linux/phy_fixed.h b/include/linux/phy_fixed.h
index 1e5d86ebdaeb..52bc8e487ef7 100644
--- a/include/linux/phy_fixed.h
+++ b/include/linux/phy_fixed.h
@@ -11,6 +11,7 @@ struct fixed_phy_status {
 };
 
 struct device_node;
+struct gpio_desc;
 
 #if IS_ENABLED(CONFIG_FIXED_PHY)
 extern int fixed_phy_change_carrier(struct net_device *dev, bool new_carrier);
-- 
2.23.0.187.g17f5b7556c-goog
Powered by blists - more mailing lists
 
