Removed pci-setup.fs

The file pci-setup.fs provided the basic PCI environment in the past when we
did not do a full PCI scan yet. Now that we include the whole PCI scan functions
via pci-scan.fs in tree.fs, the pci-setup.fs file is not needed anymore.

Signed-off-by: Thomas Huth <thuth@linux.vnet.ibm.com>
diff --git a/board-qemu/slof/OF.fs b/board-qemu/slof/OF.fs
index 29003e3..bbc2c57 100644
--- a/board-qemu/slof/OF.fs
+++ b/board-qemu/slof/OF.fs
@@ -118,10 +118,6 @@
 \ Grab rtas from qemu
 #include "rtas.fs"
 
-380 cp
-
-#include "pci-setup.fs"
-
 390 cp
 
 #include "virtio.fs"
diff --git a/board-qemu/slof/pci-setup.fs b/board-qemu/slof/pci-setup.fs
deleted file mode 100644
index 0f0d752..0000000
--- a/board-qemu/slof/pci-setup.fs
+++ /dev/null
@@ -1,34 +0,0 @@
-\ *****************************************************************************
-\ * Copyright (c) 2004, 2011 IBM Corporation
-\ * All rights reserved.
-\ * This program and the accompanying materials
-\ * are made available under the terms of the BSD License
-\ * which accompanies this distribution, and is available at
-\ * http://www.opensource.org/licenses/bsd-license.php
-\ *
-\ * Contributors:
-\ *     IBM Corporation - initial implementation
-\ ****************************************************************************/
-\ * PCI setup functions
-\ *****************************************************************************
-
-3a0 cp
-
-#include "pci-helper.fs"
-
-3b0 cp
-
-\ provide the device-alias definition words
-#include "pci-aliases.fs"
-
-3c0 cp
-
-#include "pci-class-code-names.fs"
-
-3d0 cp
-
-\ Provide a generic setup function ... note that we
-\ do not assign BARs here, it's done by QEMU already.
-: pci-device-generic-setup  ( config-addr -- )
-   pci-class-name 2dup device-name device-type
-;