Messages in this thread Patch in this message |  | | Date | Wed, 29 Nov 2000 15:01:59 -0700 | From | Tom Rini <> | Subject | Re: Linux 2.2.18pre24 |
| |
On Wed, Nov 29, 2000 at 02:09:59AM +0000, Alan Cox wrote:
... > 2.2.18pre21 ... > o Resnchronize Apple PowerMac codebase (Paul Mackerras & co) > o Merge powermac tree fixes into usb > o Powermac input device handling changes
As Dave Miller pointed out, DEV_MAC_HID sysctl conflicts with the RAID patches which are in much wider use. And as nothing yet uses this sysctl, I've attached a patch vs pre24 which changes the number from 3 to 5 (which is what 2.4.0-testX uses.)
-- Tom Rini (TR1265) http://gate.crashing.org/~trini/ --- linux/include/linux/sysctl.h.orig Wed Nov 29 15:01:09 2000 +++ linux/include/linux/sysctl.h Wed Nov 29 15:01:25 2000 @@ -435,7 +435,7 @@ enum { DEV_CDROM=1, DEV_HWMON=2, - DEV_MAC_HID=3 + DEV_MAC_HID=5 }; /* /proc/sys/dev/cdrom */ |  |