~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to drivers/bcma/bcma_private.h

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef LINUX_BCMA_PRIVATE_H_
 
2
#define LINUX_BCMA_PRIVATE_H_
 
3
 
 
4
#ifndef pr_fmt
 
5
#define pr_fmt(fmt)             KBUILD_MODNAME ": " fmt
 
6
#endif
 
7
 
 
8
#include <linux/bcma/bcma.h>
 
9
#include <linux/delay.h>
 
10
 
 
11
#define BCMA_CORE_SIZE          0x1000
 
12
 
 
13
struct bcma_bus;
 
14
 
 
15
/* main.c */
 
16
extern int bcma_bus_register(struct bcma_bus *bus);
 
17
extern void bcma_bus_unregister(struct bcma_bus *bus);
 
18
 
 
19
/* scan.c */
 
20
int bcma_bus_scan(struct bcma_bus *bus);
 
21
 
 
22
#ifdef CONFIG_BCMA_HOST_PCI
 
23
/* host_pci.c */
 
24
extern int __init bcma_host_pci_init(void);
 
25
extern void __exit bcma_host_pci_exit(void);
 
26
#endif /* CONFIG_BCMA_HOST_PCI */
 
27
 
 
28
#endif