swh:1:snp:c3bf2749e3476071fa748f67b0ffa2fdc5fe49d9
Raw File
Tip revision: 64aa90f26c06e1cb2aacfb98a7d0eccfbd6c1a91 authored by Linus Torvalds on 27 July 2014, 19:41:55 UTC
Linux 3.16-rc7
Tip revision: 64aa90f
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