class_create

Langue: en

Version: June 2009 (debian - 07/07/09)

Section: 9 (Appels noyau Linux)

NAME

class_create - create a struct class structure

SYNOPSIS

struct class * class_create(struct module * owner, const char * name);

ARGUMENTS

owner

pointer to the module that is to "own" this struct class

name

pointer to a string for the name of this class.

DESCRIPTION

This is used to create a struct class pointer that can then be used in calls to device_create.

Note, the pointer created here is to be destroyed when finished by making a call to class_destroy.