Chameleon

Chameleon Svn Source Tree

Root/branches/rewrite/i386/include/IOKit/storage/IOFireWireStorageCharacteristics.h

Source at commit 1129 created 12 years 11 months ago.
By meklort, Change options.o so that it reloads the system config as well. Also change it so that it uses that config for variables (NOTE: if the calue exists in chameleonConfig, it's used instead.
1/*
2 * Copyright (c) 1998-2009 Apple Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
11 * file.
12 *
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
20 *
21 * @APPLE_LICENSE_HEADER_END@
22 */
23
24
25#ifndef _IOKIT_IO_FIREWIRE_STORAGE_DEVICE_CHARACTERISTICS_H_
26#define _IOKIT_IO_FIREWIRE_STORAGE_DEVICE_CHARACTERISTICS_H_
27
28//
29//Bridge Characteristics - Characteristics defined for FireWire bridges.
30//
31
32/*!
33@defined kIOPropertyBridgeCharacteristicsKey
34@discussion This key is used to define Bridge Characteristics for a particular
35devices's bridge chipset. It has an associated dictionary which lists the
36bridge characteristics.
37
38Requirement: Optional
39
40Example:
41<pre>
42@textblock
43<dict>
44<key>Bridge Characteristics</key>
45<dict>
46<key>Bridge Vendor Name</key>
47<string>Oxford Semiconductor</string>
48<key>Bridge Model Name</key>
49<string>FW911</string>
50<key>Bridge Revision Level</key>
51<string>3.7</string>
52</dict>
53</dict>
54@/textblock
55</pre>
56*/
57
58#define kIOPropertyBridgeCharacteristicsKey"Bridge Characteristics"
59#define kIOPropertyBridgeVendorNameKey"Bridge Vendor Name"
60#define kIOPropertyBridgeModelNameKey"Bridge Model Name"
61#define kIOPropertyBridgeRevisionLevelKey"Bridge Revision Level"
62
63#endif/* _IOKIT_IO_FIREWIRE_STORAGE_DEVICE_CHARACTERISTICS_H_ */

Archive Download this file

Revision: 1129