swh:1:snp:c3bf2749e3476071fa748f67b0ffa2fdc5fe49d9
Raw File
Tip revision: 09b56adc98e0f8a21644fcb4d20ad367c3fceb55 authored by Linus Torvalds on 04 December 2007, 04:26:10 UTC
Linux 2.6.24-rc4
Tip revision: 09b56ad
device.h
/*
 * Arch specific extensions to struct device
 *
 * This file is released under the GPLv2
 */
#ifndef _ASM_SPARC64_DEVICE_H
#define _ASM_SPARC64_DEVICE_H

struct device_node;
struct of_device;

struct dev_archdata {
	void			*iommu;
	void			*stc;
	void			*host_controller;

	struct device_node	*prom_node;
	struct of_device	*op;
};

#endif /* _ASM_SPARC64_DEVICE_H */
back to top