swh:1:snp:c3bf2749e3476071fa748f67b0ffa2fdc5fe49d9
Raw File
Tip revision: b787f68c36d49bb1d9236f403813641efa74a031 authored by Linus Torvalds on 27 April 2015, 00:59:10 UTC
Linux 4.1-rc1
Tip revision: b787f68
goldfish.h
#ifndef __LINUX_GOLDFISH_H
#define __LINUX_GOLDFISH_H

/* Helpers for Goldfish virtual platform */

static inline void gf_write64(unsigned long data,
		void __iomem *portl, void __iomem *porth)
{
	writel((u32)data, portl);
#ifdef CONFIG_64BIT
	writel(data>>32, porth);
#endif
}

#endif /* __LINUX_GOLDFISH_H */
back to top