From patchwork Sun Dec 10 14:28:00 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Jasmin J." X-Patchwork-Id: 45879 X-Patchwork-Delegate: hverkuil@xs4all.nl Received: from vger.kernel.org ([209.132.180.67]) by www.linuxtv.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eO2aQ-0000tb-7h; Sun, 10 Dec 2017 14:28:10 +0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751813AbdLJO2I (ORCPT + 1 other); Sun, 10 Dec 2017 09:28:08 -0500 Received: from mail.anw.at ([195.234.101.228]:55624 "EHLO mail.anw.at" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751726AbdLJO2H (ORCPT ); Sun, 10 Dec 2017 09:28:07 -0500 Received: from hoppel.217.196.72.190 (anwhome.anw.at [195.234.103.23]) by mail.anw.at (8.14.4/8.14.4/Debian-4.1ubuntu1) with ESMTP id vBAES5lC032235; Sun, 10 Dec 2017 15:28:05 +0100 From: "Jasmin J." To: linux-media@vger.kernel.org Cc: hverkuil@xs4all.nl, d.scheller@gmx.net, jasmin@anw.at Subject: [PATCH] build: Revert 41e33085284dd2bc6b6180d8381ff8a509b9d8ba for < 3.19 Date: Sun, 10 Dec 2017 15:28:00 +0100 Message-Id: <1512916080-5938-1-git-send-email-jasmin@anw.at> X-Mailer: git-send-email 2.7.4 X-Antivirus: checked in 0.022sec at mail.anw.at ([195.234.102.72]) by smf-clamd v1.2.1 - http://smfs.sf.net/ Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org From: Jasmin Jessich I tried to to define "ktime_get_real_seconds" in "v4l/compat.h", but it is using static variables from "kernel/time/timekeeping.c". So there is no other way than reverting 41e33085284dd2bc6b6180d8381ff8a509b9d8ba for Kernels older than 3.19. Signed-off-by: Jasmin Jessich --- backports/backports.txt | 1 + backports/v3.18_ktime_get_real_seconds.patch | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 backports/v3.18_ktime_get_real_seconds.patch diff --git a/backports/backports.txt b/backports/backports.txt index 2911023..c30ccf0 100644 --- a/backports/backports.txt +++ b/backports/backports.txt @@ -83,6 +83,7 @@ add v3.19_get_user_pages_locked.patch [3.18.255] add v3.18_drop_property_h.patch +add v3.18_ktime_get_real_seconds.patch [3.17.255] add v3.17_fix_clamp.patch diff --git a/backports/v3.18_ktime_get_real_seconds.patch b/backports/v3.18_ktime_get_real_seconds.patch new file mode 100644 index 0000000..97ed081 --- /dev/null +++ b/backports/v3.18_ktime_get_real_seconds.patch @@ -0,0 +1,26 @@ +diff --git a/drivers/media/platform/vivid/vivid-rds-gen.c b/drivers/media/platform/vivid/vivid-rds-gen.c +index 996e35e..53c7777 100644 +--- a/drivers/media/platform/vivid/vivid-rds-gen.c ++++ b/drivers/media/platform/vivid/vivid-rds-gen.c +@@ -103,7 +103,7 @@ void vivid_rds_generate(struct vivid_rds_gen *rds) + * EN 50067:1998 to convert a UTC date to an RDS Modified + * Julian Day. + */ +- time64_to_tm(ktime_get_real_seconds(), 0, &tm); ++ time_to_tm(get_seconds(), 0, &tm); + l = tm.tm_mon <= 1; + date = 14956 + tm.tm_mday + ((tm.tm_year - l) * 1461) / 4 + + ((tm.tm_mon + 2 + l * 12) * 306001) / 10000; +diff --git a/drivers/media/platform/vivid/vivid-vbi-gen.c b/drivers/media/platform/vivid/vivid-vbi-gen.c +index 02c79d7..a2159de 100644 +--- a/drivers/media/platform/vivid/vivid-vbi-gen.c ++++ b/drivers/media/platform/vivid/vivid-vbi-gen.c +@@ -190,7 +190,7 @@ static void vivid_vbi_gen_set_time_of_day(u8 *packet) + struct tm tm; + u8 checksum, i; + +- time64_to_tm(ktime_get_real_seconds(), 0, &tm); ++ time_to_tm(get_seconds(), 0, &tm); + packet[0] = calc_parity(0x07); + packet[1] = calc_parity(0x01); + packet[2] = calc_parity(0x40 | tm.tm_min);