From 616c19c359b9bc2fe767c1e1143a5979fa30c68e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Fri, 20 Jun 2008 01:23:20 +0000 Subject: [PATCH] Remove leftover OF header git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26036 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- .../arch/m68k/atari/pci_openfirmware_priv.h | 50 ------------------- 1 file changed, 50 deletions(-) delete mode 100644 src/add-ons/kernel/bus_managers/pci/arch/m68k/atari/pci_openfirmware_priv.h 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