Skip to content

Commit

Permalink
V4L/DVB (8948): xc5000: kill xc5000_priv.h
Browse files Browse the repository at this point in the history
move struct xc5000_priv into xc5000.c and delete xc5000_priv.h

Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Michael Krufky authored and Mauro Carvalho Chehab committed Oct 12, 2008
1 parent 942648a commit ffb4123
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 38 deletions.
13 changes: 12 additions & 1 deletion drivers/media/common/tuners/xc5000.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
#include "dvb_frontend.h"

#include "xc5000.h"
#include "xc5000_priv.h"

static int debug;
module_param(debug, int, 0644);
Expand All @@ -46,6 +45,18 @@ MODULE_PARM_DESC(init_fw, "Load firmware during driver initialization.");
#define XC5000_DEFAULT_FIRMWARE "dvb-fe-xc5000-1.1.fw"
#define XC5000_DEFAULT_FIRMWARE_SIZE 12332

struct xc5000_priv {
struct xc5000_config *cfg;
struct i2c_adapter *i2c;

u32 freq_hz;
u32 bandwidth;
u8 video_standard;
u8 rf_mode;

void *devptr;
};

/* Misc Defines */
#define MAX_TV_STANDARD 23
#define XC_MAX_I2C_WRITE_LENGTH 64
Expand Down
37 changes: 0 additions & 37 deletions drivers/media/common/tuners/xc5000_priv.h

This file was deleted.

0 comments on commit ffb4123

Please sign in to comment.