aboutsummaryrefslogtreecommitdiff
path: root/arch/alpha/kernel/sys_takara.c
diff options
context:
space:
mode:
authorRalf Baechle <[email protected]>2011-06-10 15:30:21 +0100
committerJesse Barnes <[email protected]>2011-07-22 08:26:06 -0700
commitd5341942d784134f2997b3ff82cd63cf71d1f932 (patch)
tree355ad81a15d031bbfe7dd94ee6696d8889c926d0 /arch/alpha/kernel/sys_takara.c
parent05d3ac267a9d10af6ca370afe21802333aad1d5c (diff)
PCI: Make the struct pci_dev * argument of pci_fixup_irqs const.
Aside of the usual motivation for constification, this function has a history of being abused a hook for interrupt and other fixups so I turned this function const ages ago in the MIPS code but it should be done treewide. Due to function pointer passing in varous places a few other functions had to be constified as well. Signed-off-by: Ralf Baechle <[email protected]> To: Anton Vorontsov <[email protected]> To: Chris Metcalf <[email protected]> To: Colin Cross <[email protected]> Acked-by: "David S. Miller" <[email protected]> To: Eric Miao <[email protected]> To: Erik Gilling <[email protected]> Acked-by: Guan Xuetao <[email protected]> To: "H. Peter Anvin" <[email protected]> To: Imre Kaloz <[email protected]> To: Ingo Molnar <[email protected]> To: Ivan Kokshaysky <[email protected]> To: Jesse Barnes <[email protected]> To: Krzysztof Halasa <[email protected]> To: Lennert Buytenhek <[email protected]> To: Matt Turner <[email protected]> To: Nicolas Pitre <[email protected]> To: Olof Johansson <[email protected]> Acked-by: Paul Mundt <[email protected]> To: Richard Henderson <[email protected]> To: Russell King <[email protected]> To: Thomas Gleixner <[email protected]> Cc: Andrew Morton <[email protected]> Cc: [email protected] Cc: [email protected] Cc: [email protected] Cc: [email protected] Cc: [email protected] Cc: [email protected] Cc: [email protected] Cc: [email protected] Cc: [email protected] Signed-off-by: Jesse Barnes <[email protected]>
Diffstat (limited to 'arch/alpha/kernel/sys_takara.c')
-rw-r--r--arch/alpha/kernel/sys_takara.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/alpha/kernel/sys_takara.c b/arch/alpha/kernel/sys_takara.c
index a31f8cd9bd6b..2ae99ad6975e 100644
--- a/arch/alpha/kernel/sys_takara.c
+++ b/arch/alpha/kernel/sys_takara.c
@@ -157,7 +157,7 @@ takara_init_irq(void)
*/
static int __init
-takara_map_irq_srm(struct pci_dev *dev, u8 slot, u8 pin)
+takara_map_irq_srm(const struct pci_dev *dev, u8 slot, u8 pin)
{
static char irq_tab[15][5] __initdata = {
{ 16+3, 16+3, 16+3, 16+3, 16+3}, /* slot 6 == device 3 */
@@ -188,7 +188,7 @@ takara_map_irq_srm(struct pci_dev *dev, u8 slot, u8 pin)
}
static int __init
-takara_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
+takara_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
{
static char irq_tab[15][5] __initdata = {
{ 16+3, 16+3, 16+3, 16+3, 16+3}, /* slot 6 == device 3 */