Skip to content

Commit

Permalink
ARM: pxa: fix various compilation problems
Browse files Browse the repository at this point in the history
Due to commit 88f718e
"ARM: pxa: delete the custom GPIO header" some drivers fail
compilation, for example like this:

In file included from sound/soc/pxa/spitz.c:28:0:
sound/soc/pxa/spitz.c: In function ‘spitz_ext_control’:
arch/arm/mach-pxa/include/mach/spitz.h:111:30: error:
‘PXA_NR_BUILTIN_GPIO’ undeclared (first use in this function)
 #define SPITZ_SCP_GPIO_BASE (PXA_NR_BUILTIN_GPIO)
(etc.)

This is caused by implicit inclusion of <mach/irqs.h> from
various board-specific headers under <mach/*> in the PXA
platform. So we take a sweep over these, and for every such
header that uses PXA_NR_BUILTIN_GPIO or PXA_GPIO_TO_IRQ()
we explicitly #include "irqs.h" so that we satisfy the
dependency in the board include file alone.

Reported-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Cc: stable@vger.kernel.org # v3.13+
Signed-off-by: Kevin Hilman <khilman@linaro.org>
  • Loading branch information
Linus Walleij authored and Kevin Hilman committed Feb 10, 2014
1 parent 29ffa48 commit 9705e74
Show file tree
Hide file tree
Showing 15 changed files with 25 additions and 1 deletion.
2 changes: 2 additions & 0 deletions arch/arm/mach-pxa/include/mach/balloon3.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
#ifndef ASM_ARCH_BALLOON3_H
#define ASM_ARCH_BALLOON3_H

#include "irqs.h" /* PXA_NR_BUILTIN_GPIO */

enum balloon3_features {
BALLOON3_FEATURE_OHCI,
BALLOON3_FEATURE_MMC,
Expand Down
1 change: 1 addition & 0 deletions arch/arm/mach-pxa/include/mach/corgi.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
#ifndef __ASM_ARCH_CORGI_H
#define __ASM_ARCH_CORGI_H 1

#include "irqs.h" /* PXA_NR_BUILTIN_GPIO */

/*
* Corgi (Non Standard) GPIO Definitions
Expand Down
2 changes: 2 additions & 0 deletions arch/arm/mach-pxa/include/mach/csb726.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
#ifndef CSB726_H
#define CSB726_H

#include "irqs.h" /* PXA_GPIO_TO_IRQ */

#define CSB726_GPIO_IRQ_LAN 52
#define CSB726_GPIO_IRQ_SM501 53
#define CSB726_GPIO_MMC_DETECT 100
Expand Down
1 change: 1 addition & 0 deletions arch/arm/mach-pxa/include/mach/gumstix.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* published by the Free Software Foundation.
*/

#include "irqs.h" /* PXA_GPIO_TO_IRQ */

/* BTRESET - Reset line to Bluetooth module, active low signal. */
#define GPIO_GUMSTIX_BTRESET 7
Expand Down
1 change: 1 addition & 0 deletions arch/arm/mach-pxa/include/mach/idp.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
* IDP hardware.
*/

#include "irqs.h" /* PXA_GPIO_TO_IRQ */

#define IDP_FLASH_PHYS (PXA_CS0_PHYS)
#define IDP_ALT_FLASH_PHYS (PXA_CS1_PHYS)
Expand Down
2 changes: 2 additions & 0 deletions arch/arm/mach-pxa/include/mach/palmld.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
#ifndef _INCLUDE_PALMLD_H_
#define _INCLUDE_PALMLD_H_

#include "irqs.h" /* PXA_GPIO_TO_IRQ */

/** HERE ARE GPIOs **/

/* GPIOs */
Expand Down
2 changes: 2 additions & 0 deletions arch/arm/mach-pxa/include/mach/palmt5.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
#ifndef _INCLUDE_PALMT5_H_
#define _INCLUDE_PALMT5_H_

#include "irqs.h" /* PXA_GPIO_TO_IRQ */

/** HERE ARE GPIOs **/

/* GPIOs */
Expand Down
2 changes: 2 additions & 0 deletions arch/arm/mach-pxa/include/mach/palmtc.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
#ifndef _INCLUDE_PALMTC_H_
#define _INCLUDE_PALMTC_H_

#include "irqs.h" /* PXA_GPIO_TO_IRQ */

/** HERE ARE GPIOs **/

/* GPIOs */
Expand Down
2 changes: 2 additions & 0 deletions arch/arm/mach-pxa/include/mach/palmtx.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
#ifndef _INCLUDE_PALMTX_H_
#define _INCLUDE_PALMTX_H_

#include "irqs.h" /* PXA_GPIO_TO_IRQ */

/** HERE ARE GPIOs **/

/* GPIOs */
Expand Down
2 changes: 2 additions & 0 deletions arch/arm/mach-pxa/include/mach/pcm027.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
* Definitions of CPU card resources only
*/

#include "irqs.h" /* PXA_GPIO_TO_IRQ */

/* phyCORE-PXA270 (PCM027) Interrupts */
#define PCM027_IRQ(x) (IRQ_BOARD_START + (x))
#define PCM027_BTDET_IRQ PCM027_IRQ(0)
Expand Down
1 change: 1 addition & 0 deletions arch/arm/mach-pxa/include/mach/pcm990_baseboard.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
*/

#include <mach/pcm027.h>
#include "irqs.h" /* PXA_GPIO_TO_IRQ */

/*
* definitions relevant only when the PCM-990
Expand Down
2 changes: 2 additions & 0 deletions arch/arm/mach-pxa/include/mach/poodle.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
#ifndef __ASM_ARCH_POODLE_H
#define __ASM_ARCH_POODLE_H 1

#include "irqs.h" /* PXA_GPIO_TO_IRQ */

/*
* GPIOs
*/
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/mach-pxa/include/mach/spitz.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
#define __ASM_ARCH_SPITZ_H 1
#endif

#include "irqs.h" /* PXA_NR_BUILTIN_GPIO, PXA_GPIO_TO_IRQ */
#include <linux/fb.h>
#include <linux/gpio.h>

/* Spitz/Akita GPIOs */

Expand Down
2 changes: 2 additions & 0 deletions arch/arm/mach-pxa/include/mach/tosa.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
#ifndef _ASM_ARCH_TOSA_H_
#define _ASM_ARCH_TOSA_H_ 1

#include "irqs.h" /* PXA_NR_BUILTIN_GPIO */

/* TOSA Chip selects */
#define TOSA_LCDC_PHYS PXA_CS4_PHYS
/* Internel Scoop */
Expand Down
2 changes: 2 additions & 0 deletions arch/arm/mach-pxa/include/mach/trizeps4.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
#ifndef _TRIPEPS4_H_
#define _TRIPEPS4_H_

#include "irqs.h" /* PXA_GPIO_TO_IRQ */

/* physical memory regions */
#define TRIZEPS4_FLASH_PHYS (PXA_CS0_PHYS) /* Flash region */
#define TRIZEPS4_DISK_PHYS (PXA_CS1_PHYS) /* Disk On Chip region */
Expand Down

0 comments on commit 9705e74

Please sign in to comment.