diff options
| author | Dave Jones <davej@suse.de> | 2002-04-02 19:22:50 -0800 |
|---|---|---|
| committer | Dave Jones <davej@suse.de> | 2002-04-02 19:22:50 -0800 |
| commit | a3aa9ff6545d3eb660054a33d14c78c08108bba7 (patch) | |
| tree | 1172c4fd0c48c3f3c57101b73fd2c5b56d8b24ae /include/linux | |
| parent | 4246fcb18509b322c709266c3fd68406b9b86060 (diff) | |
[PATCH] UDF write support problem in 2.5.7
From Peter Osterlund <petero2@telia.com>
I can't get UDF write support to work in kernel 2.5.7 or 2.5.7-pre2.
The problem is that linux/config.h is not included, so CONFIG_UDF_RW
is undefined and the driver is compiled without write support. This
patch fixes my problem:
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/udf_fs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/udf_fs.h b/include/linux/udf_fs.h index 77a54446df3d..83eddc46650f 100644 --- a/include/linux/udf_fs.h +++ b/include/linux/udf_fs.h @@ -34,6 +34,8 @@ #ifndef _UDF_FS_H #define _UDF_FS_H 1 +#include <linux/config.h> + #define UDF_PREALLOCATE #define UDF_DEFAULT_PREALLOC_BLOCKS 8 |
