diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-26 10:40:28 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-26 10:40:28 -0800 |
commit | ed803862954528e6fcf7bd0f2b2e5a772a7c3281 (patch) | |
tree | fce02fe5ebc10a5a8da5e034e2bb25d79d07a808 /include | |
parent | 6aeea60aee945449c93d9aa70638deeb5c4c5439 (diff) | |
parent | c0e69a5bbc6fc74184aa043aadb9a53bc58f953b (diff) | |
download | op-kernel-dev-ed803862954528e6fcf7bd0f2b2e5a772a7c3281.zip op-kernel-dev-ed803862954528e6fcf7bd0f2b2e5a772a7c3281.tar.gz |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core-2.6:
klist.c: bit 0 in pointer can't be used as flag
debugfs: introduce stub for debugfs_create_size_t() when DEBUG_FS=n
sysfs: fix problems with binary files
PNP: fix broken pnp lowercasing for acpi module aliases
driver core: Convert '/' to '!' in dev_set_name()
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/debugfs.h | 7 | ||||
-rw-r--r-- | include/linux/klist.h | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/include/linux/debugfs.h b/include/linux/debugfs.h index 23936b1..0f5c33b 100644 --- a/include/linux/debugfs.h +++ b/include/linux/debugfs.h @@ -162,6 +162,13 @@ static inline struct dentry *debugfs_create_x32(const char *name, mode_t mode, return ERR_PTR(-ENODEV); } +struct dentry *debugfs_create_size_t(const char *name, mode_t mode, + struct dentry *parent, + size_t *value) +{ + return ERR_PTR(-ENODEV); +} + static inline struct dentry *debugfs_create_bool(const char *name, mode_t mode, struct dentry *parent, u32 *value) diff --git a/include/linux/klist.h b/include/linux/klist.h index d5a27af..e91a4e5 100644 --- a/include/linux/klist.h +++ b/include/linux/klist.h @@ -22,7 +22,7 @@ struct klist { struct list_head k_list; void (*get)(struct klist_node *); void (*put)(struct klist_node *); -}; +} __attribute__ ((aligned (4))); #define KLIST_INIT(_name, _get, _put) \ { .k_lock = __SPIN_LOCK_UNLOCKED(_name.k_lock), \ |