mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2026-08-09 06:14:34 +02:00
None of the remaining boards put useful data into the platform_data structures, so effectively this only works with DT based probing. Remove all code that references this data, to stop using the legacy gpiolib interfaces. The pxa27x version already supports gpio descriptors, while the pxa25x version now does it the same way. Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Arnd Bergmann <arnd@arndb.de> Link: https://patch.msgid.link/20260427143300.2887692-1-arnd@kernel.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20 lines
492 B
C
20 lines
492 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* This supports machine-specific differences in how the PXA2xx
|
|
* USB Device Controller (UDC) is wired.
|
|
*
|
|
* It is set in linux/arch/arm/mach-pxa/<machine>.c or in
|
|
* linux/arch/mach-ixp4xx/<machine>.c and used in
|
|
* the probe routine of linux/drivers/usb/gadget/pxa2xx_udc.c
|
|
*/
|
|
#ifndef PXA2XX_UDC_H
|
|
#define PXA2XX_UDC_H
|
|
|
|
#ifdef CONFIG_PXA27x
|
|
extern void pxa27x_clear_otgph(void);
|
|
#else
|
|
#define pxa27x_clear_otgph() do {} while (0)
|
|
#endif
|
|
|
|
#endif
|