Deleted Added
full compact
tweio.h (67555) tweio.h (118508)
1/*-
2 * Copyright (c) 2000 Michael Smith
3 * Copyright (c) 2000 BSDi
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 *
1/*-
2 * Copyright (c) 2000 Michael Smith
3 * Copyright (c) 2000 BSDi
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 *
27 * $FreeBSD: head/sys/dev/twe/tweio.h 67555 2000-10-25 06:59:06Z msmith $
27 * $FreeBSD: head/sys/dev/twe/tweio.h 118508 2003-08-05 19:55:21Z ps $
28 */
29
30
31/*
32 * User-space command
33 *
34 * Note that the command's scatter/gather list will be computed by the
35 * driver, and cannot be filled in by the consumer.

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

85
86#define TWEIO_SET_PARAM _IOW ('T', 104, struct twe_paramcommand)
87#define TWEIO_GET_PARAM _IOW ('T', 105, struct twe_paramcommand)
88
89/*
90 * Request a controller soft-reset
91 */
92#define TWEIO_RESET _IO ('T', 106)
28 */
29
30
31/*
32 * User-space command
33 *
34 * Note that the command's scatter/gather list will be computed by the
35 * driver, and cannot be filled in by the consumer.

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

85
86#define TWEIO_SET_PARAM _IOW ('T', 104, struct twe_paramcommand)
87#define TWEIO_GET_PARAM _IOW ('T', 105, struct twe_paramcommand)
88
89/*
90 * Request a controller soft-reset
91 */
92#define TWEIO_RESET _IO ('T', 106)
93
94/*
95 * Request a drive addition or deletion
96 */
97struct twe_drivecommand {
98 int td_unit;
99};
100
101#define TWEIO_ADD_UNIT _IOW ('U', 107, int)
102#define TWEIO_DEL_UNIT _IOW ('U', 108, int)