|
@@ -143,7 +143,7 @@ static void sun4d_sbus_handler_irq(int sbusl)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
-void sun4d_handler_irq(int pil, struct pt_regs *regs)
|
|
|
|
|
|
+void sun4d_handler_irq(unsigned int pil, struct pt_regs *regs)
|
|
{
|
|
{
|
|
struct pt_regs *old_regs;
|
|
struct pt_regs *old_regs;
|
|
/* SBUS IRQ level (1 - 7) */
|
|
/* SBUS IRQ level (1 - 7) */
|
|
@@ -236,7 +236,7 @@ static void sun4d_shutdown_irq(struct irq_data *data)
|
|
irq_unlink(data->irq);
|
|
irq_unlink(data->irq);
|
|
}
|
|
}
|
|
|
|
|
|
-struct irq_chip sun4d_irq = {
|
|
|
|
|
|
+static struct irq_chip sun4d_irq = {
|
|
.name = "sun4d",
|
|
.name = "sun4d",
|
|
.irq_startup = sun4d_startup_irq,
|
|
.irq_startup = sun4d_startup_irq,
|
|
.irq_shutdown = sun4d_shutdown_irq,
|
|
.irq_shutdown = sun4d_shutdown_irq,
|
|
@@ -285,9 +285,9 @@ static void __init sun4d_load_profile_irqs(void)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
-unsigned int _sun4d_build_device_irq(unsigned int real_irq,
|
|
|
|
- unsigned int pil,
|
|
|
|
- unsigned int board)
|
|
|
|
|
|
+static unsigned int _sun4d_build_device_irq(unsigned int real_irq,
|
|
|
|
+ unsigned int pil,
|
|
|
|
+ unsigned int board)
|
|
{
|
|
{
|
|
struct sun4d_handler_data *handler_data;
|
|
struct sun4d_handler_data *handler_data;
|
|
unsigned int irq;
|
|
unsigned int irq;
|
|
@@ -320,8 +320,8 @@ err_out:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-unsigned int sun4d_build_device_irq(struct platform_device *op,
|
|
|
|
- unsigned int real_irq)
|
|
|
|
|
|
+static unsigned int sun4d_build_device_irq(struct platform_device *op,
|
|
|
|
+ unsigned int real_irq)
|
|
{
|
|
{
|
|
struct device_node *dp = op->dev.of_node;
|
|
struct device_node *dp = op->dev.of_node;
|
|
struct device_node *board_parent, *bus = dp->parent;
|
|
struct device_node *board_parent, *bus = dp->parent;
|
|
@@ -383,7 +383,8 @@ err_out:
|
|
return irq;
|
|
return irq;
|
|
}
|
|
}
|
|
|
|
|
|
-unsigned int sun4d_build_timer_irq(unsigned int board, unsigned int real_irq)
|
|
|
|
|
|
+static unsigned int sun4d_build_timer_irq(unsigned int board,
|
|
|
|
+ unsigned int real_irq)
|
|
{
|
|
{
|
|
return _sun4d_build_device_irq(real_irq, real_irq, board);
|
|
return _sun4d_build_device_irq(real_irq, real_irq, board);
|
|
}
|
|
}
|