diff --git a/src/add-ons/kernel/bus_managers/pci/arch/m68k/atari/pci_openfirmware_priv.h b/src/add-ons/kernel/bus_managers/pci/arch/m68k/atari/pci_openfirmware_priv.h deleted file mode 100644 index bd57c6ac74..0000000000 --- a/src/add-ons/kernel/bus_managers/pci/arch/m68k/atari/pci_openfirmware_priv.h +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Copyright 2006, Ingo Weinhold . - * All rights reserved. Distributed under the terms of the MIT License. - */ - -#ifndef PCI_BUS_MANAGER_PPC_OPEN_FIRMWARE_PRIV_H -#define PCI_BUS_MANAGER_PPC_OPEN_FIRMWARE_PRIV_H - -#include -#include - -#include - - -struct StringArrayPropertyValue; - - -// implementations - -status_t ppc_openfirmware_probe_uninorth(int deviceNode, - const StringArrayPropertyValue &compatibleValue); - - -// property support - -struct PropertyValue { - PropertyValue() - : value(NULL) - { - } - - ~PropertyValue() - { - free(value); - } - - char *value; - int length; -}; - -struct StringArrayPropertyValue : PropertyValue { - - char *NextElement(int &cookie) const; - bool ContainsElement(const char *value) const; -}; - -status_t openfirmware_get_property(int package, const char *propertyName, - PropertyValue &value); - -#endif // PCI_BUS_MANAGER_PPC_OPEN_FIRMWARE_PRIV_H