Print this page
de-linting of .s files
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/uts/sun4v/io/fpc/fpc-asm-4v.s
+++ new/usr/src/uts/sun4v/io/fpc/fpc-asm-4v.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
↓ open down ↓ |
16 lines elided |
↑ open up ↑ |
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 2006 Sun Microsystems, Inc. All rights reserved.
24 24 * Use is subject to license terms.
25 25 */
26 26
27 -#pragma ident "%Z%%M% %I% %E% SMI"
28 -
29 27 /*
30 28 * Assembly language support for sun4v px driver
31 29 */
32 30
33 31 #include <sys/asm_linkage.h>
34 32 #include <sys/machthread.h>
35 33 #include <sys/privregs.h>
36 34 #include <sys/hypervisor_api.h>
37 35 #include "fpc-impl-4v.h"
38 36
39 37 /*LINTLIBRARY*/
40 38
41 -#if defined(lint)
42 -
43 -#include "fpc-impl-4v.h"
44 -
45 -/*ARGSUSED*/
46 -int
47 -fpc_get_fire_perfreg(devhandle_t dev_hdl, int regid, uint64_t *data)
48 -{ return (0); }
49 -
50 -/*ARGSUSED*/
51 -int
52 -fpc_set_fire_perfreg(devhandle_t dev_hdl, int regid, uint64_t data)
53 -{ return (0); }
54 -
55 -#else /* lint */
56 -
57 39 /*
58 40 * fpc_get_fire_perfreg(devhandle_t dev_hdl, int regid, uint64_t *data)
59 41 */
60 42 ENTRY(fpc_get_fire_perfreg)
61 43 mov FIRE_GET_PERFREG, %o5
62 44 ta FAST_TRAP
63 45 brz,a %o0, 1f
64 46 stx %o1, [%o2]
65 47 1: retl
66 48 nop
67 49 SET_SIZE(fpc_get_fire_perfreg)
68 50
69 51 /*
↓ open down ↓ |
3 lines elided |
↑ open up ↑ |
70 52 * fpc_set_fire_perfreg(devhandle_t dev_hdl, int regid, uint64_t data)
71 53 */
72 54 ENTRY(fpc_set_fire_perfreg)
73 55 mov FIRE_SET_PERFREG, %o5
74 56 ta FAST_TRAP
75 57 retl
76 58 nop
77 59 SET_SIZE(fpc_set_fire_perfreg)
78 60
79 61
80 -#endif
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX