diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-03-21 21:24:08 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-03-21 21:24:08 +0000 |
commit | a61c79114d96244fdacc8b4799f27906b93fdc6f (patch) | |
tree | ab93691dafa9472761fc2158fe0cb7aabc685b02 /target/linux/brcm2708 | |
parent | a03895b2efef02396f230b1c94761241950bf4a8 (diff) | |
download | master-187ad058-a61c79114d96244fdacc8b4799f27906b93fdc6f.tar.gz master-187ad058-a61c79114d96244fdacc8b4799f27906b93fdc6f.tar.bz2 master-187ad058-a61c79114d96244fdacc8b4799f27906b93fdc6f.zip |
brcm2708: remove a patch that was added in the stable update (fixes #19253)
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44920 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/brcm2708')
-rw-r--r-- | target/linux/brcm2708/patches-3.18/0114-ntp-Patch-to-fix-false-positives-on-32bit-systems.patch | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/target/linux/brcm2708/patches-3.18/0114-ntp-Patch-to-fix-false-positives-on-32bit-systems.patch b/target/linux/brcm2708/patches-3.18/0114-ntp-Patch-to-fix-false-positives-on-32bit-systems.patch deleted file mode 100644 index 35f0e4be04..0000000000 --- a/target/linux/brcm2708/patches-3.18/0114-ntp-Patch-to-fix-false-positives-on-32bit-systems.patch +++ /dev/null @@ -1,24 +0,0 @@ -From 89d56313537f161a0d9b3888c0f39770cbb994a7 Mon Sep 17 00:00:00 2001 -From: popcornmix <popcornmix@gmail.com> -Date: Sun, 8 Feb 2015 13:17:00 +0000 -Subject: [PATCH 114/114] ntp: Patch to fix false positives on 32bit systems - -See: https://bugzilla.kernel.org/show_bug.cgi?id=92481 ---- - kernel/time/ntp.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - ---- a/kernel/time/ntp.c -+++ b/kernel/time/ntp.c -@@ -634,9 +634,9 @@ int ntp_validate_timex(struct timex *txc - return -EPERM; - - if (txc->modes & ADJ_FREQUENCY) { -- if (LONG_MIN / PPM_SCALE > txc->freq) -+ if (LLONG_MIN / PPM_SCALE > txc->freq) - return -EINVAL; -- if (LONG_MAX / PPM_SCALE < txc->freq) -+ if (LLONG_MAX / PPM_SCALE < txc->freq) - return -EINVAL; - } - |