Skip to content

Commit

Permalink
m68k: missing exports
Browse files Browse the repository at this point in the history
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Al Viro authored and Linus Torvalds committed Jul 20, 2007
1 parent 7e5de05 commit 88f8bb7
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 1 deletion.
9 changes: 8 additions & 1 deletion arch/m68k/atari/atakeyb.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
* enhanced by Bjoern Brauel and Roman Hodek
*/

#include <linux/module.h>
#include <linux/sched.h>
#include <linux/kernel.h>
#include <linux/interrupt.h>
Expand Down Expand Up @@ -42,6 +43,9 @@ void (*atari_mouse_interrupt_hook) (char *);
void (*atari_input_keyboard_interrupt_hook) (unsigned char, char);
/* Hook for mouse inputdev driver */
void (*atari_input_mouse_interrupt_hook) (char *);
EXPORT_SYMBOL(atari_mouse_interrupt_hook);
EXPORT_SYMBOL(atari_input_keyboard_interrupt_hook);
EXPORT_SYMBOL(atari_input_mouse_interrupt_hook);

/* variables for IKBD self test: */

Expand Down Expand Up @@ -429,6 +433,7 @@ void ikbd_mouse_rel_pos(void)

ikbd_write(cmd, 1);
}
EXPORT_SYMBOL(ikbd_mouse_rel_pos);

/* Set absolute mouse position reporting */
void ikbd_mouse_abs_pos(int xmax, int ymax)
Expand All @@ -453,6 +458,7 @@ void ikbd_mouse_thresh(int x, int y)

ikbd_write(cmd, 3);
}
EXPORT_SYMBOL(ikbd_mouse_thresh);

/* Set mouse scale */
void ikbd_mouse_scale(int x, int y)
Expand Down Expand Up @@ -495,6 +501,7 @@ void ikbd_mouse_y0_top(void)

ikbd_write(cmd, 1);
}
EXPORT_SYMBOL(ikbd_mouse_y0_top);

/* Resume */
void ikbd_resume(void)
Expand All @@ -511,6 +518,7 @@ void ikbd_mouse_disable(void)

ikbd_write(cmd, 1);
}
EXPORT_SYMBOL(ikbd_mouse_disable);

/* Pause output */
void ikbd_pause(void)
Expand Down Expand Up @@ -696,7 +704,6 @@ int __init atari_keyb_init(void)
return 0;
}


int atari_kbdrate(struct kbd_repeat *k)
{
if (k->delay > 0) {
Expand Down
1 change: 1 addition & 0 deletions arch/m68k/kernel/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ extern int end;
extern unsigned long availmem;

int m68k_num_memory;
EXPORT_SYMBOL(m68k_num_memory);
int m68k_realnum_memory;
EXPORT_SYMBOL(m68k_realnum_memory);
unsigned long m68k_memoffset;
Expand Down
1 change: 1 addition & 0 deletions arch/m68k/mac/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ struct mac_booter_data mac_bi_data;
int mac_bisize = sizeof mac_bi_data;

struct mac_hw_present mac_hw_present;
EXPORT_SYMBOL(mac_hw_present);

/* New m68k bootinfo stuff and videobase */

Expand Down
2 changes: 2 additions & 0 deletions arch/m68k/mm/sun3kmap.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ void __iomem *sun3_ioremap(unsigned long phys, unsigned long size,
return (void __iomem *)ret;

}
EXPORT_SYMBOL(sun3_ioremap);


void __iomem *__ioremap(unsigned long phys, unsigned long size, int cache)
Expand Down Expand Up @@ -157,3 +158,4 @@ int sun3_map_test(unsigned long addr, char *val)

return ret;
}
EXPORT_SYMBOL(sun3_map_test);
2 changes: 2 additions & 0 deletions drivers/ide/legacy/falconide.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* more details.
*/

#include <linux/module.h>
#include <linux/types.h>
#include <linux/mm.h>
#include <linux/interrupt.h>
Expand Down Expand Up @@ -54,6 +55,7 @@ static int falconide_offsets[IDE_NR_PORTS] __initdata = {
*/

int falconide_intr_lock;
EXPORT_SYMBOL(falconide_intr_lock);


/*
Expand Down
7 changes: 7 additions & 0 deletions drivers/scsi/NCR53C9x.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@ enum {
/* The master ring of all esp hosts we are managing in this driver. */
static struct NCR_ESP *espchain;
int nesps = 0, esps_in_use = 0, esps_running = 0;
EXPORT_SYMBOL(nesps);
EXPORT_SYMBOL(esps_running);

irqreturn_t esp_intr(int irq, void *dev_id);

Expand Down Expand Up @@ -524,6 +526,7 @@ void esp_bootup_reset(struct NCR_ESP *esp, struct ESP_regs *eregs)
/* Eat any bitrot in the chip and we are done... */
trash = esp_read(eregs->esp_intrpt);
}
EXPORT_SYMBOL(esp_bootup_reset);

/* Allocate structure and insert basic data such as SCSI chip frequency
* data and a pointer to the device
Expand Down Expand Up @@ -772,6 +775,7 @@ const char *esp_info(struct Scsi_Host *host)
panic("Bogon ESP revision");
};
}
EXPORT_SYMBOL(esp_info);

/* From Wolfgang Stanglmeier's NCR scsi driver. */
struct info_str
Expand Down Expand Up @@ -902,6 +906,7 @@ int esp_proc_info(struct Scsi_Host *shost, char *buffer, char **start, off_t off
*start = buffer;
return esp_host_info(esp, buffer, offset, length);
}
EXPORT_SYMBOL(esp_proc_info);

static void esp_get_dmabufs(struct NCR_ESP *esp, Scsi_Cmnd *sp)
{
Expand Down Expand Up @@ -3535,6 +3540,7 @@ void esp_handle(struct NCR_ESP *esp)
if(esp->dma_irq_exit)
esp->dma_irq_exit(esp);
}
EXPORT_SYMBOL(esp_handle);

#ifndef CONFIG_SMP
irqreturn_t esp_intr(int irq, void *dev_id)
Expand Down Expand Up @@ -3631,6 +3637,7 @@ void esp_release(void)
esps_in_use--;
esps_running = esps_in_use;
}
EXPORT_SYMBOL(esp_release);
#endif

EXPORT_SYMBOL(esp_abort);
Expand Down

0 comments on commit 88f8bb7

Please sign in to comment.