From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id A65B31384B4 for ; Thu, 26 Nov 2015 20:25:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3D61C21C02A; Thu, 26 Nov 2015 20:25:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D2E5A21C02A for ; Thu, 26 Nov 2015 20:25:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9A0AA33BF0B for ; Thu, 26 Nov 2015 20:25:09 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 26322612 for ; Thu, 26 Nov 2015 20:25:07 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1448569472.6850980d23bbe114d1349eedfa571332b77599f0.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/broadcom-sta/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-wireless/broadcom-sta/files/broadcom-sta-6.30.223.271-linux-4.3.patch net-wireless/broadcom-sta/files/broadcom-sta-6.30.223.271-r2-linux-4.3.patch X-VCS-Directories: net-wireless/broadcom-sta/files/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 6850980d23bbe114d1349eedfa571332b77599f0 X-VCS-Branch: master Date: Thu, 26 Nov 2015 20:25:07 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 5c9d56c9-9831-49ca-a1ea-101eb81abb36 X-Archives-Hash: 2726a33a8e227a4fafd3c65a4d2c68f3 commit: 6850980d23bbe114d1349eedfa571332b77599f0 Author: Matt Turner gentoo org> AuthorDate: Thu Nov 26 20:24:32 2015 +0000 Commit: Matt Turner gentoo org> CommitDate: Thu Nov 26 20:24:32 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6850980d net-wireless/broadcom-sta: Fix patch. Bug: https://bugs.gentoo.org/show_bug.cgi?id=566882 .../files/broadcom-sta-6.30.223.271-linux-4.3.patch | 11 ----------- .../files/broadcom-sta-6.30.223.271-r2-linux-4.3.patch | 12 ++++++++++++ 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/net-wireless/broadcom-sta/files/broadcom-sta-6.30.223.271-linux-4.3.patch b/net-wireless/broadcom-sta/files/broadcom-sta-6.30.223.271-linux-4.3.patch deleted file mode 100644 index ae0dc56..0000000 --- a/net-wireless/broadcom-sta/files/broadcom-sta-6.30.223.271-linux-4.3.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/src/shared/linux_osl.c 2015-09-19 00:47:15.000000000 +0200 -+++ b/src/shared/linux_osl.c 2015-11-09 17:02:22.000000000 +0100 -@@ -932,7 +932,7 @@ - uint cycles; - - #if defined(__i386__) -- rdtscl(cycles); -+ cycles = (u32)native_read_tsc(); - #else - cycles = 0; - #endif diff --git a/net-wireless/broadcom-sta/files/broadcom-sta-6.30.223.271-r2-linux-4.3.patch b/net-wireless/broadcom-sta/files/broadcom-sta-6.30.223.271-r2-linux-4.3.patch new file mode 100644 index 0000000..7869dbf --- /dev/null +++ b/net-wireless/broadcom-sta/files/broadcom-sta-6.30.223.271-r2-linux-4.3.patch @@ -0,0 +1,12 @@ +diff -ruN a/src/shared/linux_osl.c b/src/shared/linux_osl.c +--- a/src/shared/linux_osl.c 2015-11-26 12:16:23.343091098 -0800 ++++ b/src/shared/linux_osl.c 2015-11-26 12:17:08.657092739 -0800 +@@ -932,7 +932,7 @@ + uint cycles; + + #if defined(__i386__) +- rdtscl(cycles); ++ cycles = (u32)native_read_tsc(); + #else + cycles = 0; + #endif