Deleted Added
full compact
ctddk.c (302408) ctddk.c (315221)
1/*-
2 * DDK library for Cronyx-Tau adapters.
3 *
4 * Copyright (C) 1998-1999 Cronyx Engineering.
5 * Author: Alexander Kvitchenko, <aak@cronyx.ru>
6 *
7 * Copyright (C) 1999-2003 Cronyx Engineering.
8 * Author: Roman Kurakin, <rik@cronyx.ru>

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

16 *
17 * Authors grant any other persons or organisations permission to use
18 * or modify this software as long as this message is kept with the software,
19 * all derivative works or modified versions.
20 *
21 * Cronyx Id: ctddk.c,v 1.1.2.3 2003/11/14 16:55:36 rik Exp $
22 */
23#include <sys/cdefs.h>
1/*-
2 * DDK library for Cronyx-Tau adapters.
3 *
4 * Copyright (C) 1998-1999 Cronyx Engineering.
5 * Author: Alexander Kvitchenko, <aak@cronyx.ru>
6 *
7 * Copyright (C) 1999-2003 Cronyx Engineering.
8 * Author: Roman Kurakin, <rik@cronyx.ru>

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

16 *
17 * Authors grant any other persons or organisations permission to use
18 * or modify this software as long as this message is kept with the software,
19 * all derivative works or modified versions.
20 *
21 * Cronyx Id: ctddk.c,v 1.1.2.3 2003/11/14 16:55:36 rik Exp $
22 */
23#include <sys/cdefs.h>
24__FBSDID("$FreeBSD: stable/11/sys/dev/ctau/ctddk.c 139749 2005-01-06 01:43:34Z imp $");
24__FBSDID("$FreeBSD: stable/11/sys/dev/ctau/ctddk.c 315221 2017-03-14 02:06:03Z pfg $");
25
26#include <dev/cx/machdep.h>
27#include <dev/ctau/ctddk.h>
28#include <dev/ctau/ctaureg.h>
29#include <dev/ctau/hdc64570.h>
30#include <dev/ctau/ds2153.h>
31#include <dev/ctau/am8530.h>
32#include <dev/ctau/lxt318.h>

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

99 ft = ctau_fw_tvec;
100 switch (b->type) {
101 case B_TAU2:
102 case B_TAU2_G703:
103 case B_TAU2_E1:
104 case B_TAU2_E1D:
105 fw = ctau2_fw_data;
106 flen = 0;
25
26#include <dev/cx/machdep.h>
27#include <dev/ctau/ctddk.h>
28#include <dev/ctau/ctaureg.h>
29#include <dev/ctau/hdc64570.h>
30#include <dev/ctau/ds2153.h>
31#include <dev/ctau/am8530.h>
32#include <dev/ctau/lxt318.h>

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

99 ft = ctau_fw_tvec;
100 switch (b->type) {
101 case B_TAU2:
102 case B_TAU2_G703:
103 case B_TAU2_E1:
104 case B_TAU2_E1D:
105 fw = ctau2_fw_data;
106 flen = 0;
107 ft = 0;
107 ft = NULL;
108 break;
109#ifndef CT_DDK_NO_G703
110 case B_TAU_G703:
111 fw = ctaug703_fw_data;
112 flen = ctaug703_fw_len;
113 ft = ctaug703_fw_tvec;
114 break;
115#endif

--- 1047 unchanged lines hidden ---
108 break;
109#ifndef CT_DDK_NO_G703
110 case B_TAU_G703:
111 fw = ctaug703_fw_data;
112 flen = ctaug703_fw_len;
113 ft = ctaug703_fw_tvec;
114 break;
115#endif

--- 1047 unchanged lines hidden ---