2006-11-11 07:18:39 +01:00
|
|
|
/*
|
|
|
|
* Arch specific extensions to struct device
|
|
|
|
*
|
|
|
|
* This file is released under the GPLv2
|
|
|
|
*/
|
2007-02-12 11:28:24 +01:00
|
|
|
#ifndef ASMARM_DEVICE_H
|
|
|
|
#define ASMARM_DEVICE_H
|
2006-11-11 07:18:39 +01:00
|
|
|
|
2007-02-12 11:28:24 +01:00
|
|
|
struct dev_archdata {
|
|
|
|
#ifdef CONFIG_DMABOUNCE
|
|
|
|
struct dmabounce_device_info *dmabounce;
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
2009-07-08 13:21:31 +02:00
|
|
|
struct pdev_archdata {
|
|
|
|
};
|
|
|
|
|
2007-02-12 11:28:24 +01:00
|
|
|
#endif
|