diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-22 16:16:01 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-22 16:16:01 -0400 |
| commit | 06b8147c5dbd385b5b97ca74e19f6f3951ebc1cb (patch) | |
| tree | 6ed9de7ca0ab3a65af6a189a89deb0a36ab35f6b /include/linux | |
| parent | 53baaaa9682c230410a057263d1ce2922f43ddc4 (diff) | |
| parent | 8725f25acc656c1522d48a6746055099efdaca4c (diff) | |
Merge branch 'merge' of git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc
* 'merge' of git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc: (49 commits)
powerpc: Fix build bug with binutils < 2.18 and GCC < 4.2
powerpc/eeh: Don't panic when EEH_MAX_FAILS is exceeded
fbdev: Teaches offb about palette on radeon r5xx/r6xx
powerpc/cell/edac: Log a syndrome code in case of correctable error
powerpc/cell: Add DMA_ATTR_WEAK_ORDERING dma attribute and use in Cell IOMMU code
powerpc: Indicate which oprofile counters to use while in compat mode
powerpc/boot: Change spaces to tabs
powerpc: Remove duplicate 6xx option in Kconfig
powerpc: Use PPC_LONG and PPC_LONG_ALIGN in lib/string.S
powerpc: Use PPC_LONG_ALIGN in uaccess.h
powerpc: Add a #define for aligning to a long-sized boundary
powerpc: Fix OF parsing of 64 bits PCI addresses
powerpc: Use WARN_ON(1) instead of __WARN()
powerpc: Fix support for latencytop
powerpc/ps3: Update ps3_defconfig
powerpc/ps3: Add a sub-match id to ps3_system_bus
powerpc: Add a 6xx defconfig
powerpc/dma: Use the struct dma_attrs in iommu code
powerpc/cell: Add support for power button of future IBM cell blades
powerpc/cell: Cleanup sysreset_hack for IBM cell blades
...
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/dma-attrs.h | 1 | ||||
| -rw-r--r-- | include/linux/fs_enet_pd.h | 4 | ||||
| -rw-r--r-- | include/linux/fsl_devices.h | 7 | ||||
| -rw-r--r-- | include/linux/of_gpio.h | 2 |
4 files changed, 9 insertions, 5 deletions
diff --git a/include/linux/dma-attrs.h b/include/linux/dma-attrs.h index 1677e2bfa00c..71ad34eca6e3 100644 --- a/include/linux/dma-attrs.h +++ b/include/linux/dma-attrs.h | |||
| @@ -12,6 +12,7 @@ | |||
| 12 | */ | 12 | */ |
| 13 | enum dma_attr { | 13 | enum dma_attr { |
| 14 | DMA_ATTR_WRITE_BARRIER, | 14 | DMA_ATTR_WRITE_BARRIER, |
| 15 | DMA_ATTR_WEAK_ORDERING, | ||
| 15 | DMA_ATTR_MAX, | 16 | DMA_ATTR_MAX, |
| 16 | }; | 17 | }; |
| 17 | 18 | ||
diff --git a/include/linux/fs_enet_pd.h b/include/linux/fs_enet_pd.h index 9bc045b8c478..0ba21ee0f58c 100644 --- a/include/linux/fs_enet_pd.h +++ b/include/linux/fs_enet_pd.h | |||
| @@ -135,11 +135,7 @@ struct fs_platform_info { | |||
| 135 | u32 device_flags; | 135 | u32 device_flags; |
| 136 | 136 | ||
| 137 | int phy_addr; /* the phy address (-1 no phy) */ | 137 | int phy_addr; /* the phy address (-1 no phy) */ |
| 138 | #ifdef CONFIG_PPC_CPM_NEW_BINDING | ||
| 139 | char bus_id[16]; | 138 | char bus_id[16]; |
| 140 | #else | ||
| 141 | const char* bus_id; | ||
| 142 | #endif | ||
| 143 | int phy_irq; /* the phy irq (if it exists) */ | 139 | int phy_irq; /* the phy irq (if it exists) */ |
| 144 | 140 | ||
| 145 | const struct fs_mii_bus_info *bus_info; | 141 | const struct fs_mii_bus_info *bus_info; |
diff --git a/include/linux/fsl_devices.h b/include/linux/fsl_devices.h index c415a496de3a..4e625e0094c8 100644 --- a/include/linux/fsl_devices.h +++ b/include/linux/fsl_devices.h | |||
| @@ -69,6 +69,7 @@ struct gianfar_mdio_data { | |||
| 69 | #define FSL_GIANFAR_DEV_HAS_VLAN 0x00000020 | 69 | #define FSL_GIANFAR_DEV_HAS_VLAN 0x00000020 |
| 70 | #define FSL_GIANFAR_DEV_HAS_EXTENDED_HASH 0x00000040 | 70 | #define FSL_GIANFAR_DEV_HAS_EXTENDED_HASH 0x00000040 |
| 71 | #define FSL_GIANFAR_DEV_HAS_PADDING 0x00000080 | 71 | #define FSL_GIANFAR_DEV_HAS_PADDING 0x00000080 |
| 72 | #define FSL_GIANFAR_DEV_HAS_MAGIC_PACKET 0x00000100 | ||
| 72 | 73 | ||
| 73 | /* Flags in gianfar_platform_data */ | 74 | /* Flags in gianfar_platform_data */ |
| 74 | #define FSL_GIANFAR_BRD_HAS_PHY_INTR 0x00000001 /* set or use a timer */ | 75 | #define FSL_GIANFAR_BRD_HAS_PHY_INTR 0x00000001 /* set or use a timer */ |
| @@ -125,4 +126,10 @@ struct mpc8xx_pcmcia_ops { | |||
| 125 | int(*voltage_set)(int slot, int vcc, int vpp); | 126 | int(*voltage_set)(int slot, int vcc, int vpp); |
| 126 | }; | 127 | }; |
| 127 | 128 | ||
| 129 | /* Returns non-zero if the current suspend operation would | ||
| 130 | * lead to a deep sleep (i.e. power removed from the core, | ||
| 131 | * instead of just the clock). | ||
| 132 | */ | ||
| 133 | int fsl_deep_sleep(void); | ||
| 134 | |||
| 128 | #endif /* _FSL_DEVICE_H_ */ | 135 | #endif /* _FSL_DEVICE_H_ */ |
diff --git a/include/linux/of_gpio.h b/include/linux/of_gpio.h index 2ee97e9877a7..67db101d0eb8 100644 --- a/include/linux/of_gpio.h +++ b/include/linux/of_gpio.h | |||
| @@ -15,7 +15,7 @@ | |||
| 15 | #define __LINUX_OF_GPIO_H | 15 | #define __LINUX_OF_GPIO_H |
| 16 | 16 | ||
| 17 | #include <linux/errno.h> | 17 | #include <linux/errno.h> |
| 18 | #include <asm/gpio.h> | 18 | #include <linux/gpio.h> |
| 19 | 19 | ||
| 20 | #ifdef CONFIG_OF_GPIO | 20 | #ifdef CONFIG_OF_GPIO |
| 21 | 21 | ||
