Deleted Added
full compact
bktr_reg.h (38707) bktr_reg.h (39041)
1/*
2 * Copyright (c) 1995 Mark Tinguely and Jim Lowe
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 327 unchanged lines hidden (view full) ---

336 ** band (0x00=NoRadio).
337 */
338
339};
340
341/* description of the card */
342#define EEPROMBLOCKSIZE 32
343struct CARDTYPE {
1/*
2 * Copyright (c) 1995 Mark Tinguely and Jim Lowe
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 327 unchanged lines hidden (view full) ---

336 ** band (0x00=NoRadio).
337 */
338
339};
340
341/* description of the card */
342#define EEPROMBLOCKSIZE 32
343struct CARDTYPE {
344 unsigned int card_id; /* card id (from #define's) */
344 char* name;
345 const struct TUNER* tuner;
346 u_char dbx; /* Has DBX chip? */
347 u_char msp3400c; /* Has msp3400c chip? */
348 u_char eepromAddr;
349 u_char eepromSize; /* bytes / EEPROMBLOCKSIZE */
350 u_char audiomuxs[ 5 ]; /* tuner, ext, int/unused,
351 mute, present */

--- 71 unchanged lines hidden (view full) ---

423#define METEOR_READ 0x00000010 /* XXX never gets referenced */
424#define METEOR_SINGLE 0x00000020 /* get single frame */
425#define METEOR_CONTIN 0x00000040 /* continuously get frames */
426#define METEOR_SYNCAP 0x00000080 /* synchronously get frames */
427#define METEOR_CAP_MASK 0x000000f0
428#define METEOR_NTSC 0x00000100
429#define METEOR_PAL 0x00000200
430#define METEOR_SECAM 0x00000400
345 char* name;
346 const struct TUNER* tuner;
347 u_char dbx; /* Has DBX chip? */
348 u_char msp3400c; /* Has msp3400c chip? */
349 u_char eepromAddr;
350 u_char eepromSize; /* bytes / EEPROMBLOCKSIZE */
351 u_char audiomuxs[ 5 ]; /* tuner, ext, int/unused,
352 mute, present */

--- 71 unchanged lines hidden (view full) ---

424#define METEOR_READ 0x00000010 /* XXX never gets referenced */
425#define METEOR_SINGLE 0x00000020 /* get single frame */
426#define METEOR_CONTIN 0x00000040 /* continuously get frames */
427#define METEOR_SYNCAP 0x00000080 /* synchronously get frames */
428#define METEOR_CAP_MASK 0x000000f0
429#define METEOR_NTSC 0x00000100
430#define METEOR_PAL 0x00000200
431#define METEOR_SECAM 0x00000400
432#define BROOKTREE_NTSC 0x00000100 /* used in video open() and */
433#define BROOKTREE_PAL 0x00000200 /* in the kernel config */
434#define BROOKTREE_SECAM 0x00000400 /* file */
431#define METEOR_AUTOMODE 0x00000800
432#define METEOR_FORM_MASK 0x00000f00
433#define METEOR_DEV0 0x00001000
434#define METEOR_DEV1 0x00002000
435#define METEOR_DEV2 0x00004000
436#define METEOR_DEV3 0x00008000
437#define METEOR_DEV_SVIDEO 0x00006000
438#define METEOR_DEV_RGB 0x0000a000

--- 53 unchanged lines hidden ---
435#define METEOR_AUTOMODE 0x00000800
436#define METEOR_FORM_MASK 0x00000f00
437#define METEOR_DEV0 0x00001000
438#define METEOR_DEV1 0x00002000
439#define METEOR_DEV2 0x00004000
440#define METEOR_DEV3 0x00008000
441#define METEOR_DEV_SVIDEO 0x00006000
442#define METEOR_DEV_RGB 0x0000a000

--- 53 unchanged lines hidden ---