diff options
author | Dave Airlie <airlied@linux.ie> | 2005-09-25 05:19:06 +0000 |
---|---|---|
committer | Dave Airlie <airlied@linux.ie> | 2005-09-25 05:19:06 +0000 |
commit | c1b7df95be1194efcfd0d9ffd63da1ce27272565 (patch) | |
tree | 544ba91deeaf45d41360c579466171717ac9db79 | |
parent | 3a0230ef9c933e07246e65a542681fc9549514f8 (diff) |
add __ATTR
-rw-r--r-- | linux-core/drm_compat.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/linux-core/drm_compat.h b/linux-core/drm_compat.h index a100e609..46d6c0e6 100644 --- a/linux-core/drm_compat.h +++ b/linux-core/drm_compat.h @@ -200,4 +200,13 @@ static inline int remap_pfn_range(struct vm_area_struct *vma, unsigned long from #define pci_pretty_name(dev) "" #endif +/* sysfs __ATTR macro */ +#ifndef __ATTR +#define __ATTR(_name,_mode,_show,_store) { \ + .attr = {.name = __stringify(_name), .mode = _mode, .owner = THIS_MODULE }, \ + .show = _show, \ + .store = _store, \ +} +#endif + #endif |