Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 61915
b: refs/heads/master
c: 66a3f82
h: refs/heads/master
i:
  61913: b19bbef
  61911: 0ae4fdb
v: v3
  • Loading branch information
Al Viro authored and Linus Torvalds committed Jul 20, 2007
1 parent 01eede5 commit b2f70c2
Show file tree
Hide file tree
Showing 13 changed files with 18 additions and 16 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 88f8bb780e13fd31f207e1752ee8624dc786381f
refs/heads/master: 66a3f820cb6a88ef0481e042d4b48b2299deab7e
4 changes: 2 additions & 2 deletions trunk/arch/m68k/apollo/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,8 @@ void dn_serial_print (const char *str)
}
}

void config_apollo(void) {

void __init config_apollo(void)
{
int i;

dn_setup_model();
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/m68k/apollo/dn_ints.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ static struct irq_controller apollo_irq_controller = {
};


void dn_init_IRQ(void)
void __init dn_init_IRQ(void)
{
m68k_setup_user_interrupt(VEC_USER + 96, 16, dn_process_int);
m68k_setup_irq_controller(&apollo_irq_controller, IRQ_APOLLO, 16);
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/m68k/bvme6000/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ static int bvme6000_get_hardware_list(char *buffer)
* This function is called during kernel startup to initialize
* the bvme6000 IRQ handling routines.
*/
static void bvme6000_init_IRQ(void)
static void __init bvme6000_init_IRQ(void)
{
m68k_setup_user_interrupt(VEC_USER, 192, NULL);
}
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/m68k/kernel/time.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ static irqreturn_t timer_interrupt(int irq, void *dummy)
return IRQ_HANDLED;
}

void time_init(void)
void __init time_init(void)
{
struct rtc_time time;

Expand Down
6 changes: 3 additions & 3 deletions trunk/arch/m68k/mac/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ extern void nubus_sweep_video(void);

static void mac_get_model(char *str);

static void mac_sched_init(irq_handler_t vector)
static void __init mac_sched_init(irq_handler_t vector)
{
via_init_clock(vector);
}
Expand Down Expand Up @@ -770,7 +770,7 @@ static struct mac_model mac_data_table[] = {
}
};

void mac_identify(void)
void __init mac_identify(void)
{
struct mac_model *m;

Expand Down Expand Up @@ -847,7 +847,7 @@ void mac_identify(void)
baboon_init();
}

void mac_report_hardware(void)
void __init mac_report_hardware(void)
{
printk(KERN_INFO "Apple Macintosh %s\n", macintosh_config->name);
}
Expand Down
4 changes: 3 additions & 1 deletion trunk/arch/m68k/mac/macints.c
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@
*
*/

#include <linux/module.h>
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/sched.h>
Expand Down Expand Up @@ -224,7 +225,7 @@ static struct irq_controller mac_irq_controller = {
.disable = mac_disable_irq,
};

void mac_init_IRQ(void)
void __init mac_init_IRQ(void)
{
#ifdef DEBUG_MACINTS
printk("mac_init_IRQ(): Setting things up...\n");
Expand Down Expand Up @@ -391,6 +392,7 @@ int mac_irq_pending(unsigned int irq)
}
return 0;
}
EXPORT_SYMBOL(mac_irq_pending);

static int num_debug[8];

Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/m68k/mm/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ pg_data_t *pg_data_table[65];
EXPORT_SYMBOL(pg_data_table);
#endif

void m68k_setup_node(int node)
void __init m68k_setup_node(int node)
{
#ifndef CONFIG_SINGLE_MEMORY_CHUNK
struct mem_info *info = m68k_memory + node;
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/m68k/mvme147/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ static int mvme147_get_hardware_list(char *buffer)
* the mvme147 IRQ handling routines.
*/

void mvme147_init_IRQ(void)
void __init mvme147_init_IRQ(void)
{
m68k_setup_user_interrupt(VEC_USER, 192, NULL);
}
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/m68k/mvme16x/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ static int mvme16x_get_hardware_list(char *buffer)
* that the base vectors for the VMEChip2 and PCCChip2 are valid.
*/

static void mvme16x_init_IRQ (void)
static void __init mvme16x_init_IRQ (void)
{
m68k_setup_user_interrupt(VEC_USER, 192, NULL);
}
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/m68k/q40/q40ints.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ static struct irq_controller q40_irq_controller = {

static int disabled;

void q40_init_IRQ(void)
void __init q40_init_IRQ(void)
{
m68k_setup_irq_controller(&q40_irq_controller, 1, Q40_IRQ_MAX);

Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/m68k/sun3/sun3ints.c
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ static struct irq_controller sun3_irq_controller = {
.disable = sun3_disable_irq,
};

void sun3_init_IRQ(void)
void __init sun3_init_IRQ(void)
{
*sun3_intreg = 1;

Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/m68k/sun3x/prom.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ static struct console sun3x_debug = {
.index = -1,
};

void sun3x_prom_init(void)
void __init sun3x_prom_init(void)
{
/* Read the vector table */

Expand Down

0 comments on commit b2f70c2

Please sign in to comment.