Infiniband: make ipath driver use default driver groups.
[GitHub/LineageOS/android_kernel_samsung_universal7580.git] / include / linux / device.h
CommitLineData
1da177e4
LT
1/*
2 * device.h - generic, centralized driver model
3 *
4 * Copyright (c) 2001-2003 Patrick Mochel <mochel@osdl.org>
89790fd7 5 * Copyright (c) 2004-2007 Greg Kroah-Hartman <gregkh@suse.de>
1da177e4
LT
6 *
7 * This file is released under the GPLv2
8 *
9 * See Documentation/driver-model/ for more information.
10 */
11
12#ifndef _DEVICE_H_
13#define _DEVICE_H_
14
1da177e4
LT
15#include <linux/ioport.h>
16#include <linux/kobject.h>
465c7a3a 17#include <linux/klist.h>
1da177e4 18#include <linux/list.h>
4a7fb636 19#include <linux/compiler.h>
1da177e4
LT
20#include <linux/types.h>
21#include <linux/module.h>
22#include <linux/pm.h>
23#include <asm/semaphore.h>
24#include <asm/atomic.h>
c6dbaef2 25#include <asm/device.h>
1da177e4
LT
26
27#define DEVICE_NAME_SIZE 50
28#define DEVICE_NAME_HALF __stringify(20) /* Less than half to accommodate slop */
29#define DEVICE_ID_SIZE 32
30#define BUS_ID_SIZE KOBJ_NAME_LEN
31
32
1da177e4
LT
33struct device;
34struct device_driver;
35struct class;
36struct class_device;
b8c5cec2 37struct bus_type;
c6f7e72a 38struct bus_type_private;
b8c5cec2
KS
39
40struct bus_attribute {
41 struct attribute attr;
42 ssize_t (*show)(struct bus_type *, char * buf);
43 ssize_t (*store)(struct bus_type *, const char * buf, size_t count);
44};
45
46#define BUS_ATTR(_name,_mode,_show,_store) \
47struct bus_attribute bus_attr_##_name = __ATTR(_name,_mode,_show,_store)
48
49extern int __must_check bus_create_file(struct bus_type *,
50 struct bus_attribute *);
51extern void bus_remove_file(struct bus_type *, struct bus_attribute *);
1da177e4
LT
52
53struct bus_type {
8d790d74 54 const char * name;
1da177e4
LT
55 struct bus_attribute * bus_attrs;
56 struct device_attribute * dev_attrs;
57 struct driver_attribute * drv_attrs;
58
59 int (*match)(struct device * dev, struct device_driver * drv);
7eff2e7a 60 int (*uevent)(struct device *dev, struct kobj_uevent_env *env);
594c8281
RK
61 int (*probe)(struct device * dev);
62 int (*remove)(struct device * dev);
63 void (*shutdown)(struct device * dev);
7c8265f5 64
7c8265f5
LT
65 int (*suspend)(struct device * dev, pm_message_t state);
66 int (*suspend_late)(struct device * dev, pm_message_t state);
67 int (*resume_early)(struct device * dev);
68 int (*resume)(struct device * dev);
b8c5cec2 69
c6f7e72a 70 struct bus_type_private *p;
1da177e4
LT
71};
72
4a7fb636 73extern int __must_check bus_register(struct bus_type * bus);
1da177e4
LT
74extern void bus_unregister(struct bus_type * bus);
75
f86db396 76extern int __must_check bus_rescan_devices(struct bus_type * bus);
1da177e4 77
1da177e4
LT
78/* iterator helpers for buses */
79
80int bus_for_each_dev(struct bus_type * bus, struct device * start, void * data,
81 int (*fn)(struct device *, void *));
0edb5860
CH
82struct device * bus_find_device(struct bus_type *bus, struct device *start,
83 void *data, int (*match)(struct device *, void *));
1da177e4 84
4a7fb636
AM
85int __must_check bus_for_each_drv(struct bus_type *bus,
86 struct device_driver *start, void *data,
87 int (*fn)(struct device_driver *, void *));
1da177e4 88
116af378
BH
89/*
90 * Bus notifiers: Get notified of addition/removal of devices
91 * and binding/unbinding of drivers to devices.
92 * In the long run, it should be a replacement for the platform
93 * notify hooks.
94 */
95struct notifier_block;
96
97extern int bus_register_notifier(struct bus_type *bus,
98 struct notifier_block *nb);
99extern int bus_unregister_notifier(struct bus_type *bus,
100 struct notifier_block *nb);
101
102/* All 4 notifers below get called with the target struct device *
103 * as an argument. Note that those functions are likely to be called
104 * with the device semaphore held in the core, so be careful.
105 */
106#define BUS_NOTIFY_ADD_DEVICE 0x00000001 /* device added */
107#define BUS_NOTIFY_DEL_DEVICE 0x00000002 /* device removed */
108#define BUS_NOTIFY_BOUND_DRIVER 0x00000003 /* driver bound to device */
109#define BUS_NOTIFY_UNBIND_DRIVER 0x00000004 /* driver about to be
110 unbound */
111
0fed80f7 112extern struct kset *bus_get_kset(struct bus_type *bus);
b249072e 113extern struct klist *bus_get_device_klist(struct bus_type *bus);
0fed80f7 114
1da177e4 115struct device_driver {
8d790d74 116 const char * name;
1da177e4
LT
117 struct bus_type * bus;
118
1da177e4 119 struct kobject kobj;
94e7b1c5 120 struct klist klist_devices;
38fdac3c 121 struct klist_node knode_bus;
1da177e4 122
8d790d74 123 struct module * owner;
f30c53a8 124 const char * mod_name; /* used for built-in modules */
0c84ce26 125 struct module_kobject * mkobj;
1da177e4
LT
126
127 int (*probe) (struct device * dev);
8d790d74 128 int (*remove) (struct device * dev);
1da177e4 129 void (*shutdown) (struct device * dev);
9480e307
RK
130 int (*suspend) (struct device * dev, pm_message_t state);
131 int (*resume) (struct device * dev);
57c74534 132 struct attribute_group **groups;
1da177e4
LT
133};
134
135
4a7fb636 136extern int __must_check driver_register(struct device_driver * drv);
1da177e4
LT
137extern void driver_unregister(struct device_driver * drv);
138
139extern struct device_driver * get_driver(struct device_driver * drv);
140extern void put_driver(struct device_driver * drv);
141extern struct device_driver *driver_find(const char *name, struct bus_type *bus);
d779249e 142extern int driver_probe_done(void);
1da177e4 143
405ae7d3 144/* sysfs interface for exporting driver attributes */
1da177e4
LT
145
146struct driver_attribute {
147 struct attribute attr;
148 ssize_t (*show)(struct device_driver *, char * buf);
149 ssize_t (*store)(struct device_driver *, const char * buf, size_t count);
150};
151
152#define DRIVER_ATTR(_name,_mode,_show,_store) \
153struct driver_attribute driver_attr_##_name = __ATTR(_name,_mode,_show,_store)
154
4a7fb636
AM
155extern int __must_check driver_create_file(struct device_driver *,
156 struct driver_attribute *);
1da177e4
LT
157extern void driver_remove_file(struct device_driver *, struct driver_attribute *);
158
4a7fb636
AM
159extern int __must_check driver_for_each_device(struct device_driver * drv,
160 struct device *start, void *data,
161 int (*fn)(struct device *, void *));
0edb5860
CH
162struct device * driver_find_device(struct device_driver *drv,
163 struct device *start, void *data,
164 int (*match)(struct device *, void *));
fae3cd00 165
1da177e4
LT
166/*
167 * device classes
168 */
169struct class {
8d790d74 170 const char * name;
e9ba6365 171 struct module * owner;
1da177e4 172
823bccfc 173 struct kset subsys;
1da177e4 174 struct list_head children;
23681e47 175 struct list_head devices;
1da177e4 176 struct list_head interfaces;
86406245 177 struct kset class_dirs;
1da177e4
LT
178 struct semaphore sem; /* locks both the children and interfaces lists */
179
180 struct class_attribute * class_attrs;
181 struct class_device_attribute * class_dev_attrs;
2620efef 182 struct device_attribute * dev_attrs;
1da177e4 183
7eff2e7a
KS
184 int (*uevent)(struct class_device *dev, struct kobj_uevent_env *env);
185 int (*dev_uevent)(struct device *dev, struct kobj_uevent_env *env);
1da177e4
LT
186
187 void (*release)(struct class_device *dev);
188 void (*class_release)(struct class *class);
2620efef 189 void (*dev_release)(struct device *dev);
7c8265f5
LT
190
191 int (*suspend)(struct device *, pm_message_t state);
192 int (*resume)(struct device *);
1da177e4
LT
193};
194
4a7fb636 195extern int __must_check class_register(struct class *);
1da177e4
LT
196extern void class_unregister(struct class *);
197
1da177e4
LT
198
199struct class_attribute {
200 struct attribute attr;
201 ssize_t (*show)(struct class *, char * buf);
202 ssize_t (*store)(struct class *, const char * buf, size_t count);
203};
204
205#define CLASS_ATTR(_name,_mode,_show,_store) \
206struct class_attribute class_attr_##_name = __ATTR(_name,_mode,_show,_store)
207
4a7fb636
AM
208extern int __must_check class_create_file(struct class *,
209 const struct class_attribute *);
1da177e4
LT
210extern void class_remove_file(struct class *, const struct class_attribute *);
211
a7fd6706
KS
212struct class_device_attribute {
213 struct attribute attr;
214 ssize_t (*show)(struct class_device *, char * buf);
215 ssize_t (*store)(struct class_device *, const char * buf, size_t count);
216};
217
218#define CLASS_DEVICE_ATTR(_name,_mode,_show,_store) \
219struct class_device_attribute class_device_attr_##_name = \
220 __ATTR(_name,_mode,_show,_store)
221
4a7fb636 222extern int __must_check class_device_create_file(struct class_device *,
a7fd6706 223 const struct class_device_attribute *);
1da177e4 224
74be227f
GKH
225/**
226 * struct class_device - class devices
227 * @class: pointer to the parent class for this class device. This is required.
228 * @devt: for internal use by the driver core only.
229 * @node: for internal use by the driver core only.
230 * @kobj: for internal use by the driver core only.
1498221d 231 * @groups: optional additional groups to be created
74be227f
GKH
232 * @dev: if set, a symlink to the struct device is created in the sysfs
233 * directory for this struct class device.
234 * @class_data: pointer to whatever you want to store here for this struct
235 * class_device. Use class_get_devdata() and class_set_devdata() to get and
236 * set this pointer.
237 * @parent: pointer to a struct class_device that is the parent of this struct
238 * class_device. If NULL, this class_device will show up at the root of the
239 * struct class in sysfs (which is probably what you want to have happen.)
240 * @release: pointer to a release function for this struct class_device. If
241 * set, this will be called instead of the class specific release function.
242 * Only use this if you want to override the default release function, like
243 * when you are nesting class_device structures.
312c004d
KS
244 * @uevent: pointer to a uevent function for this struct class_device. If
245 * set, this will be called instead of the class specific uevent function.
246 * Only use this if you want to override the default uevent function, like
74be227f
GKH
247 * when you are nesting class_device structures.
248 */
1da177e4
LT
249struct class_device {
250 struct list_head node;
251
252 struct kobject kobj;
253 struct class * class; /* required */
254 dev_t devt; /* dev_t, creates the sysfs "dev" */
255 struct device * dev; /* not necessary, but nice to have */
256 void * class_data; /* class-specific data */
51d172d5 257 struct class_device *parent; /* parent of this child device, if there is one */
1498221d 258 struct attribute_group ** groups; /* optional groups */
1da177e4 259
51d172d5 260 void (*release)(struct class_device *dev);
7eff2e7a 261 int (*uevent)(struct class_device *dev, struct kobj_uevent_env *env);
1da177e4
LT
262 char class_id[BUS_ID_SIZE]; /* unique to this class */
263};
264
265static inline void *
266class_get_devdata (struct class_device *dev)
267{
268 return dev->class_data;
269}
270
271static inline void
272class_set_devdata (struct class_device *dev, void *data)
273{
274 dev->class_data = data;
275}
276
277
4a7fb636 278extern int __must_check class_device_register(struct class_device *);
1da177e4
LT
279extern void class_device_unregister(struct class_device *);
280extern void class_device_initialize(struct class_device *);
4a7fb636 281extern int __must_check class_device_add(struct class_device *);
1da177e4
LT
282extern void class_device_del(struct class_device *);
283
1da177e4
LT
284extern struct class_device * class_device_get(struct class_device *);
285extern void class_device_put(struct class_device *);
286
1da177e4
LT
287extern void class_device_remove_file(struct class_device *,
288 const struct class_device_attribute *);
d919fd43
GKH
289extern int __must_check class_device_create_bin_file(struct class_device *,
290 struct bin_attribute *);
291extern void class_device_remove_bin_file(struct class_device *,
292 struct bin_attribute *);
1da177e4
LT
293
294struct class_interface {
295 struct list_head node;
296 struct class *class;
297
d8539d81
DT
298 int (*add) (struct class_device *, struct class_interface *);
299 void (*remove) (struct class_device *, struct class_interface *);
c47ed219
GKH
300 int (*add_dev) (struct device *, struct class_interface *);
301 void (*remove_dev) (struct device *, struct class_interface *);
1da177e4
LT
302};
303
4a7fb636 304extern int __must_check class_interface_register(struct class_interface *);
1da177e4
LT
305extern void class_interface_unregister(struct class_interface *);
306
ab7d7371 307extern struct class *class_create(struct module *owner, const char *name);
e9ba6365 308extern void class_destroy(struct class *cls);
51d172d5
GKH
309extern struct class_device *class_device_create(struct class *cls,
310 struct class_device *parent,
311 dev_t devt,
312 struct device *device,
ddd5d35a 313 const char *fmt, ...)
51d172d5 314 __attribute__((format(printf,5,6)));
e9ba6365
GKH
315extern void class_device_destroy(struct class *cls, dev_t devt);
316
414264f9
KS
317/*
318 * The type of device, "struct device" is embedded in. A class
319 * or bus can contain devices of different types
320 * like "partitions" and "disks", "mouse" and "event".
321 * This identifies the device type and carries type-specific
322 * information, equivalent to the kobj_type of a kobject.
323 * If "name" is specified, the uevent will contain it in
324 * the DEVTYPE variable.
325 */
f9f852df 326struct device_type {
414264f9 327 const char *name;
621a1672 328 struct attribute_group **groups;
7eff2e7a 329 int (*uevent)(struct device *dev, struct kobj_uevent_env *env);
f9f852df 330 void (*release)(struct device *dev);
f89cbc39
DT
331 int (*suspend)(struct device * dev, pm_message_t state);
332 int (*resume)(struct device * dev);
f9f852df
KS
333};
334
a7fd6706
KS
335/* interface for exporting device attributes */
336struct device_attribute {
337 struct attribute attr;
338 ssize_t (*show)(struct device *dev, struct device_attribute *attr,
339 char *buf);
340 ssize_t (*store)(struct device *dev, struct device_attribute *attr,
341 const char *buf, size_t count);
342};
343
344#define DEVICE_ATTR(_name,_mode,_show,_store) \
345struct device_attribute dev_attr_##_name = __ATTR(_name,_mode,_show,_store)
346
4a7fb636
AM
347extern int __must_check device_create_file(struct device *device,
348 struct device_attribute * entry);
a7fd6706 349extern void device_remove_file(struct device * dev, struct device_attribute * attr);
2589f188
GKH
350extern int __must_check device_create_bin_file(struct device *dev,
351 struct bin_attribute *attr);
352extern void device_remove_bin_file(struct device *dev,
353 struct bin_attribute *attr);
523ded71
AS
354extern int device_schedule_callback_owner(struct device *dev,
355 void (*func)(struct device *), struct module *owner);
356
357/* This is a macro to avoid include problems with THIS_MODULE */
358#define device_schedule_callback(dev, func) \
359 device_schedule_callback_owner(dev, func, THIS_MODULE)
9ac7849e
TH
360
361/* device resource management */
362typedef void (*dr_release_t)(struct device *dev, void *res);
363typedef int (*dr_match_t)(struct device *dev, void *res, void *match_data);
364
365#ifdef CONFIG_DEBUG_DEVRES
366extern void * __devres_alloc(dr_release_t release, size_t size, gfp_t gfp,
367 const char *name);
368#define devres_alloc(release, size, gfp) \
369 __devres_alloc(release, size, gfp, #release)
370#else
371extern void * devres_alloc(dr_release_t release, size_t size, gfp_t gfp);
372#endif
373extern void devres_free(void *res);
374extern void devres_add(struct device *dev, void *res);
375extern void * devres_find(struct device *dev, dr_release_t release,
376 dr_match_t match, void *match_data);
377extern void * devres_get(struct device *dev, void *new_res,
378 dr_match_t match, void *match_data);
379extern void * devres_remove(struct device *dev, dr_release_t release,
380 dr_match_t match, void *match_data);
381extern int devres_destroy(struct device *dev, dr_release_t release,
382 dr_match_t match, void *match_data);
383
384/* devres group */
385extern void * __must_check devres_open_group(struct device *dev, void *id,
386 gfp_t gfp);
387extern void devres_close_group(struct device *dev, void *id);
388extern void devres_remove_group(struct device *dev, void *id);
389extern int devres_release_group(struct device *dev, void *id);
390
391/* managed kzalloc/kfree for device drivers, no kmalloc, always use kzalloc */
392extern void *devm_kzalloc(struct device *dev, size_t size, gfp_t gfp);
393extern void devm_kfree(struct device *dev, void *p);
394
1da177e4 395struct device {
36239577
PM
396 struct klist klist_children;
397 struct klist_node knode_parent; /* node in sibling list */
94e7b1c5 398 struct klist_node knode_driver;
465c7a3a 399 struct klist_node knode_bus;
49a4ec18 400 struct device *parent;
1da177e4
LT
401
402 struct kobject kobj;
403 char bus_id[BUS_ID_SIZE]; /* position on parent bus */
f9f852df 404 struct device_type *type;
f2eaae19 405 unsigned is_registered:1;
49a4ec18 406 unsigned uevent_suppress:1;
1da177e4 407
af70316a
PM
408 struct semaphore sem; /* semaphore to synchronize calls to
409 * its driver.
410 */
411
1da177e4
LT
412 struct bus_type * bus; /* type of bus device is on */
413 struct device_driver *driver; /* which driver has allocated this
414 device */
415 void *driver_data; /* data private to the driver */
4e10d12a
DSL
416 void *platform_data; /* Platform specific data, device
417 core doesn't touch it */
1da177e4
LT
418 struct dev_pm_info power;
419
87348136
CH
420#ifdef CONFIG_NUMA
421 int numa_node; /* NUMA node this device is close to */
422#endif
1da177e4
LT
423 u64 *dma_mask; /* dma mask (if dma'able device) */
424 u64 coherent_dma_mask;/* Like dma_mask, but for
425 alloc_coherent mappings as
426 not all hardware supports
427 64 bit addresses for consistent
428 allocations such descriptors. */
429
430 struct list_head dma_pools; /* dma pools (if dma'ble) */
431
432 struct dma_coherent_mem *dma_mem; /* internal for coherent mem
433 override */
c6dbaef2
BH
434 /* arch specific additions */
435 struct dev_archdata archdata;
1da177e4 436
9ac7849e
TH
437 spinlock_t devres_lock;
438 struct list_head devres_head;
439
23681e47
GKH
440 /* class_device migration path */
441 struct list_head node;
b7a3e813 442 struct class *class;
23681e47 443 dev_t devt; /* dev_t, creates the sysfs "dev" */
de0ff00d 444 struct attribute_group **groups; /* optional groups */
23681e47 445
1da177e4
LT
446 void (*release)(struct device * dev);
447};
448
87348136
CH
449#ifdef CONFIG_NUMA
450static inline int dev_to_node(struct device *dev)
451{
452 return dev->numa_node;
453}
454static inline void set_dev_node(struct device *dev, int node)
455{
456 dev->numa_node = node;
457}
458#else
459static inline int dev_to_node(struct device *dev)
460{
461 return -1;
462}
463static inline void set_dev_node(struct device *dev, int node)
464{
465}
466#endif
467
1da177e4
LT
468static inline void *
469dev_get_drvdata (struct device *dev)
470{
471 return dev->driver_data;
472}
473
474static inline void
475dev_set_drvdata (struct device *dev, void *data)
476{
477 dev->driver_data = data;
478}
479
d305ef5d
DR
480static inline int device_is_registered(struct device *dev)
481{
f2eaae19 482 return dev->is_registered;
d305ef5d
DR
483}
484
1f21782e
AB
485void driver_init(void);
486
1da177e4
LT
487/*
488 * High level routines for use by the bus drivers
489 */
4a7fb636 490extern int __must_check device_register(struct device * dev);
1da177e4
LT
491extern void device_unregister(struct device * dev);
492extern void device_initialize(struct device * dev);
4a7fb636 493extern int __must_check device_add(struct device * dev);
1da177e4 494extern void device_del(struct device * dev);
04fed361 495extern int device_for_each_child(struct device *, void *,
1da177e4 496 int (*fn)(struct device *, void *));
5ab69981
CH
497extern struct device *device_find_child(struct device *, void *data,
498 int (*match)(struct device *, void *));
a2de48ca 499extern int device_rename(struct device *dev, char *new_name);
8a82472f 500extern int device_move(struct device *dev, struct device *new_parent);
1da177e4
LT
501
502/*
503 * Manual binding of a device to driver. See drivers/base/bus.c
504 * for information on use.
505 */
f86db396 506extern int __must_check device_bind_driver(struct device *dev);
1da177e4 507extern void device_release_driver(struct device * dev);
4a7fb636 508extern int __must_check device_attach(struct device * dev);
f86db396
AM
509extern int __must_check driver_attach(struct device_driver *drv);
510extern int __must_check device_reprobe(struct device *dev);
1da177e4 511
23681e47
GKH
512/*
513 * Easy functions for dynamically creating devices on the fly
514 */
515extern struct device *device_create(struct class *cls, struct device *parent,
5cbe5f8a 516 dev_t devt, const char *fmt, ...)
23681e47
GKH
517 __attribute__((format(printf,4,5)));
518extern void device_destroy(struct class *cls, dev_t devt);
775b64d2
RW
519#ifdef CONFIG_PM_SLEEP
520extern void destroy_suspended_device(struct class *cls, dev_t devt);
521#else /* !CONFIG_PM_SLEEP */
522static inline void destroy_suspended_device(struct class *cls, dev_t devt)
523{
524 device_destroy(cls, devt);
525}
526#endif /* !CONFIG_PM_SLEEP */
1da177e4 527
1da177e4
LT
528/*
529 * Platform "fixup" functions - allow the platform to have their say
530 * about devices and actions that the general device layer doesn't
531 * know about.
532 */
533/* Notify platform of device discovery */
534extern int (*platform_notify)(struct device * dev);
535
536extern int (*platform_notify_remove)(struct device * dev);
537
538
539/**
540 * get_device - atomically increment the reference count for the device.
541 *
542 */
543extern struct device * get_device(struct device * dev);
544extern void put_device(struct device * dev);
1da177e4
LT
545
546
116f232b 547/* drivers/base/power/shutdown.c */
1da177e4
LT
548extern void device_shutdown(void);
549
58b3b71d
RW
550/* drivers/base/sys.c */
551extern void sysdev_shutdown(void);
552
1da177e4 553/* debugging and troubleshooting/diagnostic helpers. */
3e95637a 554extern const char *dev_driver_string(struct device *dev);
1da177e4 555#define dev_printk(level, dev, format, arg...) \
3e95637a 556 printk(level "%s %s: " format , dev_driver_string(dev) , (dev)->bus_id , ## arg)
1da177e4 557
7b8712e5
EM
558#define dev_emerg(dev, format, arg...) \
559 dev_printk(KERN_EMERG , dev , format , ## arg)
560#define dev_alert(dev, format, arg...) \
561 dev_printk(KERN_ALERT , dev , format , ## arg)
562#define dev_crit(dev, format, arg...) \
563 dev_printk(KERN_CRIT , dev , format , ## arg)
564#define dev_err(dev, format, arg...) \
565 dev_printk(KERN_ERR , dev , format , ## arg)
566#define dev_warn(dev, format, arg...) \
567 dev_printk(KERN_WARNING , dev , format , ## arg)
568#define dev_notice(dev, format, arg...) \
569 dev_printk(KERN_NOTICE , dev , format , ## arg)
570#define dev_info(dev, format, arg...) \
571 dev_printk(KERN_INFO , dev , format , ## arg)
572
1da177e4
LT
573#ifdef DEBUG
574#define dev_dbg(dev, format, arg...) \
575 dev_printk(KERN_DEBUG , dev , format , ## arg)
576#else
404d5b18
DW
577static inline int __attribute__ ((format (printf, 2, 3)))
578dev_dbg(struct device * dev, const char * fmt, ...)
579{
580 return 0;
581}
1da177e4
LT
582#endif
583
aebdc3b4
DB
584#ifdef VERBOSE_DEBUG
585#define dev_vdbg dev_dbg
586#else
587static inline int __attribute__ ((format (printf, 2, 3)))
588dev_vdbg(struct device * dev, const char * fmt, ...)
589{
590 return 0;
591}
592#endif
593
1da177e4
LT
594/* Create alias, so I can be autoloaded. */
595#define MODULE_ALIAS_CHARDEV(major,minor) \
596 MODULE_ALIAS("char-major-" __stringify(major) "-" __stringify(minor))
597#define MODULE_ALIAS_CHARDEV_MAJOR(major) \
598 MODULE_ALIAS("char-major-" __stringify(major) "-*")
599#endif /* _DEVICE_H_ */