1
0
Fork 0

[SPARC64]: Partially revert "Constify function pointer tables."

This partially reverts 872e2be7c4
(Constify function pointer tables.)

The solaris/socksys.c transformation wasn't valid:

arch/sparc64/solaris/socksys.c:192: error: assignment of read-only variable ‘socksys_file_ops’
arch/sparc64/solaris/socksys.c:195: error: assignment of read-only variable ‘socksys_file_ops’
arch/sparc64/solaris/socksys.c:196: error: assignment of read-only variable ‘socksys_file_ops’

Signed-off-by: David S. Miller <davem@davemloft.net>
hifive-unleashed-5.1
David S. Miller 2008-01-23 21:32:04 -08:00
parent 4784b11c4f
commit de195fd001
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ extern void mykfree(void *);
static unsigned int (*sock_poll)(struct file *, poll_table *);
static const struct file_operations socksys_file_ops = {
static struct file_operations socksys_file_ops = {
/* Currently empty */
};