You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
255 B
16 lines
255 B
18 years ago
|
/*
|
||
|
* Arch specific extensions to struct device
|
||
|
*
|
||
|
* This file is released under the GPLv2
|
||
|
*/
|
||
18 years ago
|
#ifndef _ASM_IA64_DEVICE_H
|
||
|
#define _ASM_IA64_DEVICE_H
|
||
18 years ago
|
|
||
18 years ago
|
struct dev_archdata {
|
||
|
#ifdef CONFIG_ACPI
|
||
|
void *acpi_handle;
|
||
|
#endif
|
||
|
};
|
||
|
|
||
|
#endif /* _ASM_IA64_DEVICE_H */
|