diff options
author | Thomas Horsten <thomas@horsten.com> | 2008-06-15 01:17:11 (GMT) |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2008-06-16 14:14:48 (GMT) |
commit | 1f34f2e4262bae8a1aa6d8fd6306b07074d33718 (patch) | |
tree | e1162a346238af0444846ea4cded8d0a4cb04322 /arch/mips/lasat/sysctl.h | |
parent | c9c5023d83df5dc7d58830a63fd0e082120f00e3 (diff) | |
download | linux-fsl-qoriq-1f34f2e4262bae8a1aa6d8fd6306b07074d33718.tar.xz |
[MIPS] Lasat: sysctl fixup
LASAT's sysctl interface was broken, it failed a check during boot because
a single entry had a sysctl number and the rest were unnumbered. When I
fixed it I noticed that the whole sysctl file needed a spring clean, it was
using mutexes where it wasn't needed (it's only needed to protect during
writes to the EEPROM), so I moved that stuff out and generally cleaned the
whole thing up.
So now, LASAT's sysctl/proc interface is working again.
Signed-off-by: Thomas Horsten <thomas@horsten.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/lasat/sysctl.h')
-rw-r--r-- | arch/mips/lasat/sysctl.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/arch/mips/lasat/sysctl.h b/arch/mips/lasat/sysctl.h deleted file mode 100644 index 341b979..0000000 --- a/arch/mips/lasat/sysctl.h +++ /dev/null @@ -1,24 +0,0 @@ -/* - * LASAT sysctl values - */ - -#ifndef _LASAT_SYSCTL_H -#define _LASAT_SYSCTL_H - -/* /proc/sys/lasat */ -enum { - LASAT_CPU_HZ = 1, - LASAT_BUS_HZ, - LASAT_MODEL, - LASAT_PRID, - LASAT_IPADDR, - LASAT_NETMASK, - LASAT_BCAST, - LASAT_PASSWORD, - LASAT_SBOOT, - LASAT_RTC, - LASAT_NAMESTR, - LASAT_TYPESTR, -}; - -#endif /* _LASAT_SYSCTL_H */ |