Merge commit '9276b3991ba20d5a5660887ba81b0bc7bed25a0c'
[unleashed.git] / share / man / man9f / makedevice.9f
blob58227afc93feb27514de5b9ab328c038ba08442c
1 '\" te
2 .\"  Copyright 1989 AT&T
3 .\"  Copyright (c) 2006, Sun Microsystems, Inc.,  All Rights Reserved
4 .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License").  You may not use this file except in compliance with the License.
5 .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing.  See the License for the specific language governing permissions and limitations under the License.
6 .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE.  If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
7 .TH MAKEDEVICE 9F "Jan 16, 2006"
8 .SH NAME
9 makedevice \- make device number from major and minor numbers
10 .SH SYNOPSIS
11 .LP
12 .nf
13 #include <sys/types.h>
14 #include <sys/mkdev.h>
15 #include <sys/ddi.h>
19 \fBdev_t\fR \fBmakedevice\fR(\fBmajor_t\fR \fImajnum\fR, \fBminor_t\fR \fIminnum\fR);
20 .fi
22 .SH INTERFACE LEVEL
23 .sp
24 .LP
25 Architecture independent level 1 (DDI/DKI).
26 .SH PARAMETERS
27 .sp
28 .ne 2
29 .na
30 \fB\fImajnum\fR\fR
31 .ad
32 .RS 10n
33 Major device number.
34 .RE
36 .sp
37 .ne 2
38 .na
39 \fB\fIminnum\fR\fR
40 .ad
41 .RS 10n
42 Minor device number.
43 .RE
45 .SH DESCRIPTION
46 .sp
47 .LP
48 The \fBmakedevice()\fR function creates a device number from a major and minor
49 device number. \fBmakedevice()\fR should be used to create device numbers so
50 the driver will port easily to releases that treat device numbers differently.
51 .SH RETURN VALUES
52 .sp
53 .LP
54 The device number, containing both the major number and the minor number, is
55 returned. No validation of the major or minor numbers is performed.
56 .SH CONTEXT
57 .sp
58 .LP
59 The \fBmakedevice()\fR function can be called from user, interrupt, or kernel
60 context.
61 .SH SEE ALSO
62 .sp
63 .LP
64 \fBgetmajor\fR(9F), \fBgetminor\fR(9F)