Staging: crystalhd: Replace the local includes with global header
authorJorgyano Vieira <jorgyano@gmail.com>
Sat, 25 Feb 2012 23:58:21 +0000 (21:58 -0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 29 Feb 2012 23:54:39 +0000 (15:54 -0800)
This patch replaces the local includes with the global header.
So the the crystalhd.h will be the only header included by the other files.

Signed-off-by: Jorgyano Vieira <jorgyano@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/crystalhd/bc_dts_glob_lnx.h
drivers/staging/crystalhd/crystalhd_cmds.c
drivers/staging/crystalhd/crystalhd_cmds.h
drivers/staging/crystalhd/crystalhd_hw.c
drivers/staging/crystalhd/crystalhd_hw.h
drivers/staging/crystalhd/crystalhd_lnx.c
drivers/staging/crystalhd/crystalhd_lnx.h
drivers/staging/crystalhd/crystalhd_misc.c
drivers/staging/crystalhd/crystalhd_misc.h

index bbe5119761fa9dd5c2098a50e94e4182abf731a5..fd1a6e680c8ae4da4111b0a0e29e49595fda842b 100644 (file)
@@ -48,8 +48,7 @@
 
 #endif
 
-#include "bc_dts_defs.h"
-#include "bcm_70012_regs.h"    /* Link Register defs */
+#include "crystalhd.h"
 
 #define CRYSTALHD_API_NAME     "crystalhd"
 #define CRYSTALHD_API_DEV_NAME "/dev/crystalhd"
index 3735ed3da4c6362f1079dc6461b30ed9b487f567..05fe78748dfcaf6b330c907443e5ac5b4e87c504 100644 (file)
@@ -24,8 +24,7 @@
  * along with this driver.  If not, see <http://www.gnu.org/licenses/>.
  **********************************************************************/
 
-#include "crystalhd_cmds.h"
-#include "crystalhd_hw.h"
+#include "crystalhd.h"
 
 static struct crystalhd_user *bc_cproc_get_uid(struct crystalhd_cmd *ctx)
 {
index f0a2796045c2a476bc13ef1168dbf6076e01c7da..4066ba393a17277cb0eacfad208ffbd5148212a7 100644 (file)
@@ -33,8 +33,8 @@
  *        from _dts_glob and dts_defs etc.. which are defined for
  *        windows.
  */
-#include "crystalhd_misc.h"
-#include "crystalhd_hw.h"
+
+#include "crystalhd.h"
 
 enum crystalhd_state {
        BC_LINK_INVALID         = 0x00,
index 2d02ed2c77af04d99193af20da9676ea986ce458..88b538bfe7e366ec994554ba59f21a6386e3fa6c 100644 (file)
  * along with this driver.  If not, see <http://www.gnu.org/licenses/>.
  **********************************************************************/
 
+#include "crystalhd.h"
+
 #include <linux/pci.h>
 #include <linux/slab.h>
 #include <linux/delay.h>
-#include "crystalhd_hw.h"
 
 /* Functions internal to this file */
 
index 3efbf9d4ff5d55a3322a33118a76122686f62d4f..2d0e6c6005e54859cf1b551c45136077cd743573 100644 (file)
@@ -27,8 +27,7 @@
 #ifndef _CRYSTALHD_HW_H_
 #define _CRYSTALHD_HW_H_
 
-#include "crystalhd_misc.h"
-#include "crystalhd_fw_if.h"
+#include "crystalhd.h"
 
 /* HW constants..*/
 #define DMA_ENGINE_CNT         2
index 9dca92c9557725865f862f7fecbcc4d4ed7368a4..d9e3d618f7f4de52bfb3928cf4d42b12aa68da73 100644 (file)
   along with this driver.  If not, see <http://www.gnu.org/licenses/>.
 ***************************************************************************/
 
+#include "crystalhd.h"
+
 #include <linux/mutex.h>
 #include <linux/slab.h>
 
-#include "crystalhd_lnx.h"
 
 static DEFINE_MUTEX(chd_dec_mutex);
 static struct class *crystalhd_class;
index a2b5a56be6ddd4b817904ea3961917b59f0b4faa..a81f9298b0a18b47c3361382a07fab435cc14c47 100644 (file)
@@ -1,7 +1,7 @@
 /***************************************************************************
  * Copyright (c) 2005-2009, Broadcom Corporation.
  *
- *  Name: crystalhd_lnx . c
+ *  Name: crystalhd_lnx . h
  *
  *  Description:
  *             BCM70012 Linux driver
 #include <asm/system.h>
 #include <linux/uaccess.h>
 
-#include "crystalhd_cmds.h"
+#include "crystalhd.h"
 
 #define CRYSTAL_HD_NAME                "Broadcom Crystal HD Decoder (BCM70012) Driver"
 
-
 /* OS specific PCI information structure and adapter information. */
 struct crystalhd_adp {
        /* Hardware borad/PCI specifics */
index 5fa0c6e10ce265c0356023ea5bd22da2eefe6ac1..b3a637814a161228347b683d47e999d974dbe8ab 100644 (file)
  * along with this driver.  If not, see <http://www.gnu.org/licenses/>.
  **********************************************************************/
 
-#include <linux/slab.h>
+#include "crystalhd.h"
 
-#include "crystalhd_misc.h"
-#include "crystalhd_lnx.h"
+#include <linux/slab.h>
 
 uint32_t g_linklog_level;
 
index d2f7256146e485c76aab8f1ea3d54a0dca38987f..84c87938a8319507243105753874da9ffe7c2d83 100644 (file)
@@ -28,6 +28,8 @@
 #ifndef _CRYSTALHD_MISC_H_
 #define _CRYSTALHD_MISC_H_
 
+#include "crystalhd.h"
+
 #include <linux/module.h>
 #include <linux/kernel.h>
 #include <linux/errno.h>
@@ -35,8 +37,6 @@
 #include <linux/ioctl.h>
 #include <linux/dma-mapping.h>
 #include <linux/sched.h>
-#include <asm/system.h>
-#include "bc_dts_glob_lnx.h"
 
 /* Global log level variable defined in crystal_misc.c file */
 extern uint32_t g_linklog_level;