Print this page
de-linting of .s files
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/uts/common/io/tpm/tpm_hcall.s
+++ new/usr/src/uts/common/io/tpm/tpm_hcall.s
1 1 /*
2 2 * CDDL HEADER START
3 3 *
4 4 * The contents of this file are subject to the terms of the
5 5 * Common Development and Distribution License (the "License").
6 6 * You may not use this file except in compliance with the License.
7 7 *
8 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 9 * or http://www.opensolaris.org/os/licensing.
10 10 * See the License for the specific language governing permissions
11 11 * and limitations under the License.
12 12 *
13 13 * When distributing Covered Code, include this CDDL HEADER in each
14 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 15 * If applicable, add the following below this CDDL HEADER, with the
16 16 * fields enclosed by brackets "[]" replaced with your own identifying
17 17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 18 *
19 19 * CDDL HEADER END
20 20 */
21 21
22 22 /*
23 23 * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
24 24 * Use is subject to license terms.
25 25 */
↓ open down ↓ |
25 lines elided |
↑ open up ↑ |
26 26
27 27 /*
28 28 * Hypervisor calls used by tpm driver
29 29 */
30 30
31 31 #include <sys/asm_linkage.h>
32 32
33 33 #if defined(sun4v)
34 34 #include <sys/hypervisor_api.h>
35 35
36 -#if defined(lint) || defined(__lint)
37 -
38 -/*ARGSUSED*/
39 -uint64_t
40 -hcall_tpm_get(uint64_t locality, uint64_t offset, uint64_t size,
41 - uint64_t *value)
42 -{
43 - return (0);
44 -}
45 -
46 -/*ARGSUSED*/
47 -uint64_t
48 -hcall_tpm_put(uint64_t locality, uint64_t offset, uint64_t size,
49 - uint64_t value)
50 -{
51 - return (0);
52 -}
53 -
54 -#else /* lint || __lint */
55 -
56 36 /*
57 37 * hcall_tpm_get(uint64_t locality, uint64_t offset, uint64_t size,
58 38 * uint64_t *value)
59 39 */
60 40 ENTRY(hcall_tpm_get)
61 41 mov %o3, %g1
62 42 mov HV_TPM_GET, %o5
63 43 ta FAST_TRAP
64 44 stx %o1, [%g1]
65 45 retl
66 46 nop
67 47 SET_SIZE(hcall_tpm_get)
68 48
69 49 /*
70 50 * uint64_t
↓ open down ↓ |
5 lines elided |
↑ open up ↑ |
71 51 * hcall_tpm_put(uint64_t locality, uint64_t offset, uint64_t size,
72 52 * uint64_t value)
73 53 */
74 54 ENTRY(hcall_tpm_put)
75 55 mov HV_TPM_PUT, %o5
76 56 ta FAST_TRAP
77 57 retl
78 58 nop
79 59 SET_SIZE(hcall_tpm_put)
80 60
81 -#endif /* lint || __lint */
82 -
83 61 #endif /* defined(sun4v) */
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX