diff options
Diffstat (limited to 'usr/src/uts/common/sys/modctl.h')
-rw-r--r-- | usr/src/uts/common/sys/modctl.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/usr/src/uts/common/sys/modctl.h b/usr/src/uts/common/sys/modctl.h index 1093eddef6..5e9450dde5 100644 --- a/usr/src/uts/common/sys/modctl.h +++ b/usr/src/uts/common/sys/modctl.h @@ -61,6 +61,7 @@ struct mod_ops { * The defined set of mod_ops structures for each loadable module type * Defined in modctl.c */ +extern struct mod_ops mod_brandops; #if defined(__i386) || defined(__amd64) extern struct mod_ops mod_cpuops; #endif @@ -175,6 +176,13 @@ struct modlpcbe { struct __pcbe_ops *pcbe_ops; }; +/* For Brand modules */ +struct modlbrand { + struct mod_ops *brand_modops; + char *brand_linkinfo; + struct brand *brand_branddef; +}; + /* for devname fs */ struct modldev { struct mod_ops *dev_modops; |