Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
56f54e7d
Commit
56f54e7d
authored
Nov 23, 2011
by
Arnd Bergmann
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix' of
git://github.com/ycmiao/pxa-linux
into fixes
parents
d92c9d5b
e4b3bbe3
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
15 additions
and
15 deletions
+15
-15
arch/arm/configs/ezx_defconfig
arch/arm/configs/ezx_defconfig
+1
-1
arch/arm/configs/imote2_defconfig
arch/arm/configs/imote2_defconfig
+1
-1
arch/arm/configs/magician_defconfig
arch/arm/configs/magician_defconfig
+1
-1
arch/arm/configs/zeus_defconfig
arch/arm/configs/zeus_defconfig
+1
-1
arch/arm/mach-mmp/gplugd.c
arch/arm/mach-mmp/gplugd.c
+1
-1
arch/arm/mach-mmp/include/mach/gpio-pxa.h
arch/arm/mach-mmp/include/mach/gpio-pxa.h
+1
-1
arch/arm/mach-pxa/balloon3.c
arch/arm/mach-pxa/balloon3.c
+1
-1
arch/arm/mach-pxa/colibri-pxa320.c
arch/arm/mach-pxa/colibri-pxa320.c
+1
-1
arch/arm/mach-pxa/gumstix.c
arch/arm/mach-pxa/gumstix.c
+1
-1
arch/arm/mach-pxa/include/mach/palm27x.h
arch/arm/mach-pxa/include/mach/palm27x.h
+2
-2
arch/arm/mach-pxa/palm27x.c
arch/arm/mach-pxa/palm27x.c
+2
-2
arch/arm/mach-pxa/palmtc.c
arch/arm/mach-pxa/palmtc.c
+1
-1
arch/arm/mach-pxa/vpac270.c
arch/arm/mach-pxa/vpac270.c
+1
-1
No files found.
arch/arm/configs/ezx_defconfig
View file @
56f54e7d
...
...
@@ -287,7 +287,7 @@ CONFIG_USB=y
# CONFIG_USB_DEVICE_CLASS is not set
CONFIG_USB_OHCI_HCD=y
CONFIG_USB_GADGET=y
CONFIG_USB_
GADGET_
PXA27X=y
CONFIG_USB_PXA27X=y
CONFIG_USB_ETH=m
# CONFIG_USB_ETH_RNDIS is not set
CONFIG_MMC=y
...
...
arch/arm/configs/imote2_defconfig
View file @
56f54e7d
...
...
@@ -263,7 +263,7 @@ CONFIG_USB=y
# CONFIG_USB_DEVICE_CLASS is not set
CONFIG_USB_OHCI_HCD=y
CONFIG_USB_GADGET=y
CONFIG_USB_
GADGET_
PXA27X=y
CONFIG_USB_PXA27X=y
CONFIG_USB_ETH=m
# CONFIG_USB_ETH_RNDIS is not set
CONFIG_MMC=y
...
...
arch/arm/configs/magician_defconfig
View file @
56f54e7d
...
...
@@ -132,7 +132,7 @@ CONFIG_USB_MON=m
CONFIG_USB_OHCI_HCD=y
CONFIG_USB_GADGET=y
CONFIG_USB_GADGET_VBUS_DRAW=500
CONFIG_USB_
GADGET_
PXA27X=y
CONFIG_USB_PXA27X=y
CONFIG_USB_ETH=m
# CONFIG_USB_ETH_RNDIS is not set
CONFIG_USB_GADGETFS=m
...
...
arch/arm/configs/zeus_defconfig
View file @
56f54e7d
...
...
@@ -140,7 +140,7 @@ CONFIG_USB_SERIAL=m
CONFIG_USB_SERIAL_GENERIC=y
CONFIG_USB_SERIAL_MCT_U232=m
CONFIG_USB_GADGET=m
CONFIG_USB_
GADGET_
PXA27X=y
CONFIG_USB_PXA27X=y
CONFIG_USB_ETH=m
CONFIG_USB_GADGETFS=m
CONFIG_USB_FILE_STORAGE=m
...
...
arch/arm/mach-mmp/gplugd.c
View file @
56f54e7d
...
...
@@ -182,7 +182,7 @@ static void __init gplugd_init(void)
/* on-chip devices */
pxa168_add_uart
(
3
);
pxa168_add_ssp
(
0
);
pxa168_add_ssp
(
1
);
pxa168_add_twsi
(
0
,
NULL
,
ARRAY_AND_SIZE
(
gplugd_i2c_board_info
));
pxa168_add_eth
(
&
gplugd_eth_platform_data
);
...
...
arch/arm/mach-mmp/include/mach/gpio-pxa.h
View file @
56f54e7d
...
...
@@ -7,7 +7,7 @@
#define GPIO_REGS_VIRT (APB_VIRT_BASE + 0x19000)
#define BANK_OFF(n) (((n) < 3) ? (n) << 2 : 0x100 + (((n) - 3) << 2))
#define GPIO_REG(x) (
GPIO_REGS_VIRT + (x
))
#define GPIO_REG(x) (
*(volatile u32 *)(GPIO_REGS_VIRT + (x)
))
#define NR_BUILTIN_GPIO IRQ_GPIO_NUM
...
...
arch/arm/mach-pxa/balloon3.c
View file @
56f54e7d
...
...
@@ -307,7 +307,7 @@ static inline void balloon3_mmc_init(void) {}
/******************************************************************************
* USB Gadget
******************************************************************************/
#if defined(CONFIG_USB_
GADGET_PXA27X)||defined(CONFIG_USB_GADGET
_PXA27X_MODULE)
#if defined(CONFIG_USB_
PXA27X)||defined(CONFIG_USB
_PXA27X_MODULE)
static
void
balloon3_udc_command
(
int
cmd
)
{
if
(
cmd
==
PXA2XX_UDC_CMD_CONNECT
)
...
...
arch/arm/mach-pxa/colibri-pxa320.c
View file @
56f54e7d
...
...
@@ -146,7 +146,7 @@ static void __init colibri_pxa320_init_eth(void)
static
inline
void
__init
colibri_pxa320_init_eth
(
void
)
{}
#endif
/* CONFIG_AX88796 */
#if defined(CONFIG_USB_
GADGET_PXA27X)||defined(CONFIG_USB_GADGET
_PXA27X_MODULE)
#if defined(CONFIG_USB_
PXA27X)||defined(CONFIG_USB
_PXA27X_MODULE)
static
struct
gpio_vbus_mach_info
colibri_pxa320_gpio_vbus_info
=
{
.
gpio_vbus
=
mfp_to_gpio
(
MFP_PIN_GPIO96
),
.
gpio_pullup
=
-
1
,
...
...
arch/arm/mach-pxa/gumstix.c
View file @
56f54e7d
...
...
@@ -106,7 +106,7 @@ static void __init gumstix_mmc_init(void)
}
#endif
#ifdef CONFIG_USB_
GADGET_
PXA25X
#ifdef CONFIG_USB_PXA25X
static
struct
gpio_vbus_mach_info
gumstix_udc_info
=
{
.
gpio_vbus
=
GPIO_GUMSTIX_USB_GPIOn
,
.
gpio_pullup
=
GPIO_GUMSTIX_USB_GPIOx
,
...
...
arch/arm/mach-pxa/include/mach/palm27x.h
View file @
56f54e7d
...
...
@@ -37,8 +37,8 @@ extern void __init palm27x_lcd_init(int power,
#define palm27x_lcd_init(power, mode) do {} while (0)
#endif
#if defined(CONFIG_USB_
GADGET_
PXA27X) || \
defined(CONFIG_USB_
GADGET_
PXA27X_MODULE)
#if defined(CONFIG_USB_PXA27X) || \
defined(CONFIG_USB_PXA27X_MODULE)
extern
void
__init
palm27x_udc_init
(
int
vbus
,
int
pullup
,
int
vbus_inverted
);
#else
...
...
arch/arm/mach-pxa/palm27x.c
View file @
56f54e7d
...
...
@@ -164,8 +164,8 @@ void __init palm27x_lcd_init(int power, struct pxafb_mode_info *mode)
/******************************************************************************
* USB Gadget
******************************************************************************/
#if defined(CONFIG_USB_
GADGET_
PXA27X) || \
defined(CONFIG_USB_
GADGET_
PXA27X_MODULE)
#if defined(CONFIG_USB_PXA27X) || \
defined(CONFIG_USB_PXA27X_MODULE)
static
struct
gpio_vbus_mach_info
palm27x_udc_info
=
{
.
gpio_vbus_inverted
=
1
,
};
...
...
arch/arm/mach-pxa/palmtc.c
View file @
56f54e7d
...
...
@@ -338,7 +338,7 @@ static inline void palmtc_mkp_init(void) {}
/******************************************************************************
* UDC
******************************************************************************/
#if defined(CONFIG_USB_
GADGET_PXA25X)||defined(CONFIG_USB_GADGET
_PXA25X_MODULE)
#if defined(CONFIG_USB_
PXA25X)||defined(CONFIG_USB
_PXA25X_MODULE)
static
struct
gpio_vbus_mach_info
palmtc_udc_info
=
{
.
gpio_vbus
=
GPIO_NR_PALMTC_USB_DETECT_N
,
.
gpio_vbus_inverted
=
1
,
...
...
arch/arm/mach-pxa/vpac270.c
View file @
56f54e7d
...
...
@@ -343,7 +343,7 @@ static inline void vpac270_uhc_init(void) {}
/******************************************************************************
* USB Gadget
******************************************************************************/
#if defined(CONFIG_USB_
GADGET_PXA27X)||defined(CONFIG_USB_GADGET
_PXA27X_MODULE)
#if defined(CONFIG_USB_
PXA27X)||defined(CONFIG_USB
_PXA27X_MODULE)
static
struct
gpio_vbus_mach_info
vpac270_gpio_vbus_info
=
{
.
gpio_vbus
=
GPIO41_VPAC270_UDC_DETECT
,
.
gpio_pullup
=
-
1
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment