summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-06-18 08:38:47 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-06-18 08:38:47 +0200
commit738d5ad104bbbe5d1bfb6c0553bb4a1eb91cc433 (patch)
treec30578306b78e02d073d8de457c9895646ed01ea
parentRevert "usb: host: xhci-plat: Create platform device for onboard hubs in prob... (diff)
downloadlinux-738d5ad104bbbe5d1bfb6c0553bb4a1eb91cc433.tar.xz
linux-738d5ad104bbbe5d1bfb6c0553bb4a1eb91cc433.zip
Revert "of/platform: Add stubs for of_platform_device_create/destroy()"
This reverts commit 412981e06294dac3254d83bbf71d4184ea911d05 as the patch series is causing build issues in linux-next at the moment. Cc: Matthias Kaehlcke <mka@chromium.org> Link: https://lore.kernel.org/r/YMuRcrE8xlWnFSWW@google.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--include/linux/of_platform.h22
1 files changed, 4 insertions, 18 deletions
diff --git a/include/linux/of_platform.h b/include/linux/of_platform.h
index d15b6cd5e1c3..84a966623e78 100644
--- a/include/linux/of_platform.h
+++ b/include/linux/of_platform.h
@@ -61,18 +61,16 @@ static inline struct platform_device *of_find_device_by_node(struct device_node
}
#endif
-extern int of_platform_bus_probe(struct device_node *root,
- const struct of_device_id *matches,
- struct device *parent);
-
-#ifdef CONFIG_OF_ADDRESS
/* Platform devices and busses creation */
extern struct platform_device *of_platform_device_create(struct device_node *np,
const char *bus_id,
struct device *parent);
extern int of_platform_device_destroy(struct device *dev, void *data);
-
+extern int of_platform_bus_probe(struct device_node *root,
+ const struct of_device_id *matches,
+ struct device *parent);
+#ifdef CONFIG_OF_ADDRESS
extern int of_platform_populate(struct device_node *root,
const struct of_device_id *matches,
const struct of_dev_auxdata *lookup,
@@ -86,18 +84,6 @@ extern int devm_of_platform_populate(struct device *dev);
extern void devm_of_platform_depopulate(struct device *dev);
#else
-/* Platform devices and busses creation */
-static inline struct platform_device *of_platform_device_create(struct device_node *np,
- const char *bus_id,
- struct device *parent)
-{
- return NULL;
-}
-static inline int of_platform_device_destroy(struct device *dev, void *data)
-{
- return -ENODEV;
-}
-
static inline int of_platform_populate(struct device_node *root,
const struct of_device_id *matches,
const struct of_dev_auxdata *lookup,