summaryrefslogtreecommitdiffstats
path: root/arch/sh/kernel/pci-sh.c
blob: a4a6c6918f26b7f2efe2eafcf2856f23da8391ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/pci.h>
#include <linux/init.h>
#include <linux/ioport.h>
#include <linux/errno.h>
#include <asm/machvec.h>

void __init pcibios_init(void)
{
	if (sh_mv.mv_init_pci != NULL) {
		sh_mv.mv_init_pci();
	}
}

/* Haven't done anything here as yet */
char * __init pcibios_setup(char *str)
{
	return str;
}

/* We don't have anything here to fixup */
struct pci_fixup pcibios_fixups[] = {
	{0, 0, 0, NULL}
};