summaryrefslogtreecommitdiff
path: root/ANDROID_3.4.5/drivers/bcma/bcma_private.h
diff options
context:
space:
mode:
authorSrikant Patnaik2015-01-11 12:28:04 +0530
committerSrikant Patnaik2015-01-11 12:28:04 +0530
commit871480933a1c28f8a9fed4c4d34d06c439a7a422 (patch)
tree8718f573808810c2a1e8cb8fb6ac469093ca2784 /ANDROID_3.4.5/drivers/bcma/bcma_private.h
parent9d40ac5867b9aefe0722bc1f110b965ff294d30d (diff)
downloadFOSSEE-netbook-kernel-source-871480933a1c28f8a9fed4c4d34d06c439a7a422.tar.gz
FOSSEE-netbook-kernel-source-871480933a1c28f8a9fed4c4d34d06c439a7a422.tar.bz2
FOSSEE-netbook-kernel-source-871480933a1c28f8a9fed4c4d34d06c439a7a422.zip
Moved, renamed, and deleted files
The original directory structure was scattered and unorganized. Changes are basically to make it look like kernel structure.
Diffstat (limited to 'ANDROID_3.4.5/drivers/bcma/bcma_private.h')
-rw-r--r--ANDROID_3.4.5/drivers/bcma/bcma_private.h59
1 files changed, 0 insertions, 59 deletions
diff --git a/ANDROID_3.4.5/drivers/bcma/bcma_private.h b/ANDROID_3.4.5/drivers/bcma/bcma_private.h
deleted file mode 100644
index b81755bb..00000000
--- a/ANDROID_3.4.5/drivers/bcma/bcma_private.h
+++ /dev/null
@@ -1,59 +0,0 @@
-#ifndef LINUX_BCMA_PRIVATE_H_
-#define LINUX_BCMA_PRIVATE_H_
-
-#ifndef pr_fmt
-#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
-#endif
-
-#include <linux/bcma/bcma.h>
-#include <linux/delay.h>
-
-#define BCMA_CORE_SIZE 0x1000
-
-struct bcma_bus;
-
-/* main.c */
-int __devinit bcma_bus_register(struct bcma_bus *bus);
-void bcma_bus_unregister(struct bcma_bus *bus);
-int __init bcma_bus_early_register(struct bcma_bus *bus,
- struct bcma_device *core_cc,
- struct bcma_device *core_mips);
-#ifdef CONFIG_PM
-int bcma_bus_suspend(struct bcma_bus *bus);
-int bcma_bus_resume(struct bcma_bus *bus);
-#endif
-
-/* scan.c */
-int bcma_bus_scan(struct bcma_bus *bus);
-int __init bcma_bus_scan_early(struct bcma_bus *bus,
- struct bcma_device_id *match,
- struct bcma_device *core);
-void bcma_init_bus(struct bcma_bus *bus);
-
-/* sprom.c */
-int bcma_sprom_get(struct bcma_bus *bus);
-
-/* driver_chipcommon.c */
-#ifdef CONFIG_BCMA_DRIVER_MIPS
-void bcma_chipco_serial_init(struct bcma_drv_cc *cc);
-#endif /* CONFIG_BCMA_DRIVER_MIPS */
-
-/* driver_chipcommon_pmu.c */
-u32 bcma_pmu_alp_clock(struct bcma_drv_cc *cc);
-u32 bcma_pmu_get_clockcpu(struct bcma_drv_cc *cc);
-
-#ifdef CONFIG_BCMA_HOST_PCI
-/* host_pci.c */
-extern int __init bcma_host_pci_init(void);
-extern void __exit bcma_host_pci_exit(void);
-#endif /* CONFIG_BCMA_HOST_PCI */
-
-/* driver_pci.c */
-u32 bcma_pcie_read(struct bcma_drv_pci *pc, u32 address);
-
-#ifdef CONFIG_BCMA_DRIVER_PCI_HOSTMODE
-bool __devinit bcma_core_pci_is_in_hostmode(struct bcma_drv_pci *pc);
-void __devinit bcma_core_pci_hostmode_init(struct bcma_drv_pci *pc);
-#endif /* CONFIG_BCMA_DRIVER_PCI_HOSTMODE */
-
-#endif