Revert "UFS: add const to parser token table"
This reverts commitf9247273cb
(andfb2e405fc1
- "fix fs/nfs/nfsroot.c compilation" - that fixed a missed conversion). The changes cause problems for at least the sparc build. Let's re-do them when the exact issues are resolved. Requested-by: Andrew Morton <akpm@linux-foundation.org> Requested-by: Steven Whitehouse <swhiteho@redhat.com> Cc: David Miller <davem@davemloft.net> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
@ -14,7 +14,7 @@ struct match_token {
|
||||
const char *pattern;
|
||||
};
|
||||
|
||||
typedef const struct match_token match_table_t[];
|
||||
typedef struct match_token match_table_t[];
|
||||
|
||||
/* Maximum number of arguments that match_token will find in a pattern */
|
||||
enum {MAX_OPT_ARGS = 3};
|
||||
|
Reference in New Issue
Block a user