1ddi_no_info(9F) Kernel Functions for Drivers ddi_no_info(9F)
2
3
4
6 ddi_no_info - stub for getinfo(9E)
7
9 #include <sys/ddi.h>
10 #include <sys/sunddi.h>
11
12
13
14 int ddi_no_info(dev_info_t *dip, ddi_info_cmd_t infocmd, void *arg,
15 void **result
16
17
19 Solaris DDI specific (Solaris DDI)
20
22 dev_info_t *dip Pointer to dev_info structure.
23
24
25 ddi_info_cmd_t infocmd Command argument. Valid command values are:
26 DDI_INFO_DEVT2DEVINFO and
27 DDI_INFO_DEVT2INSTANCE.
28
29
30 void *arg Command-specific argument.
31
32
33 void **result Pointer to where the requested information is
34 stored.
35
36
38 The ddi_no_info() function always returns DDI_FAILURE. It is provided
39 as a convenience routine for drivers not providing a cb_ops(9S) or for
40 network drivers only providing DLPI-2 services. Such drivers can use
41 ddi_no_info() in the devo_getinfo entry point (see getinfo(9E)) of the
42 dev_ops(9S) structure.
43
45 The ddi_no_info() function always returns DDI_FAILURE.
46
48 getinfo(9E), qassociate(9F), cb_ops(9S), dev_ops(9S)
49
50
51
52SunOS 5.11 9 Jul 2002 ddi_no_info(9F)