mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
c5bf161fac
MIPS is no longer a part of Imagination Technologies, and as such my @imgtec.com email address will soon cease to function. This patch updates occurrances of it with my new @mips.com email address, and adds an entry in .mailmap such that git (& tools such as get_maintainer.pl when examining history) will use the new address. Signed-off-by: Paul Burton <paul.burton@mips.com> Cc: Daniel Schwierzeck <daniel.schwierzeck@gmail.com> Cc: u-boot@lists.denx.de
17 lines
494 B
C
17 lines
494 B
C
/*
|
|
* Copyright (C) 2013 Imagination Technologies
|
|
* Author: Paul Burton <paul.burton@mips.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __PCI_MSC01_H__
|
|
#define __PCI_MSC01_H__
|
|
|
|
extern void msc01_pci_init(void *base, unsigned long sys_bus,
|
|
unsigned long sys_phys, unsigned long sys_size,
|
|
unsigned long mem_bus, unsigned long mem_phys,
|
|
unsigned long mem_size, unsigned long io_bus,
|
|
unsigned long io_phys, unsigned long io_size);
|
|
|
|
#endif /* __PCI_MSC01_H__ */
|