All of lore.kernel.org
 help / color / mirror / Atom feed
* + drivers-media-pci-ttpci-av7110_v4lc-fix-build.patch added to -mm tree
@ 2020-09-14  4:26 akpm
  0 siblings, 0 replies; only message in thread
From: akpm @ 2020-09-14  4:26 UTC (permalink / raw)
  To: akpm, mm-commits


The patch titled
     Subject: drivers/media/pci/ttpci/av7110_v4l.c: fix build
has been added to the -mm tree.  Its filename is
     drivers-media-pci-ttpci-av7110_v4lc-fix-build.patch

This patch should soon appear at
    http://ozlabs.org/~akpm/mmots/broken-out/drivers-media-pci-ttpci-av7110_v4lc-fix-build.patch
and later at
    http://ozlabs.org/~akpm/mmotm/broken-out/drivers-media-pci-ttpci-av7110_v4lc-fix-build.patch

Before you just go and hit "reply", please:
   a) Consider who else should be cc'ed
   b) Prefer to cc a suitable mailing list as well
   c) Ideally: find the original patch on the mailing list and do a
      reply-to-all to that, adding suitable additional cc's

*** Remember to use Documentation/process/submit-checklist.rst when testing your code ***

The -mm tree is included into linux-next and is updated
there every 3-4 working days

------------------------------------------------------
From: Andrew Morton <akpm@linux-foundation.org>
Subject: drivers/media/pci/ttpci/av7110_v4l.c: fix build

drivers/media/pci/ttpci/av7110_v4l.c: In function vidioc_s_frequency:
drivers/media/pci/ttpci/av7110_v4l.c:163:11: error: SSE register return with SSE disabled
  if (freq < 16U * 168.25)
      ~~~~~^~~~~~~~~~~~~~

revert linux-next change.


Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 drivers/media/pci/ttpci/av7110_v4l.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

--- a/drivers/media/pci/ttpci/av7110_v4l.c~drivers-media-pci-ttpci-av7110_v4lc-fix-build
+++ a/drivers/media/pci/ttpci/av7110_v4l.c
@@ -160,9 +160,9 @@ static int ves1820_set_tv_freq(struct sa
 	buf[1] = div & 0xff;
 	buf[2] = 0x8e;
 
-	if (freq < 16U * 168.25)
+	if (freq < (u32) (16 * 168.25))
 		config = 0xa0;
-	else if (freq < 16U * 447.25)
+	else if (freq < (u32) (16 * 447.25))
 		config = 0x90;
 	else
 		config = 0x30;
_

Patches currently in -mm which might be from akpm@linux-foundation.org are

mm.patch
mm-memory_hotplug-introduce-default-phys_to_target_node-implementation-fix.patch
device-dax-make-pgmap-optional-for-instance-creation-fix.patch
mm-memremap_pages-support-multiple-ranges-per-invocation-fix.patch
device-dax-make-align-a-per-device-property-fix.patch
powerpc-mm-move-setting-pte-specific-flags-to-pfn_pte-fix.patch
mm-gup-dont-permit-users-to-call-get_user_pages-with-foll_longterm-fix.patch
mm-page_allocc-clean-code-by-removing-unnecessary-initialization-fix.patch
memblock-make-memblock_debug-and-related-functionality-private-fix.patch
arch-drivers-replace-for_each_membock-with-for_each_mem_range-fix.patch
xarray-add-xa_get_order-fix.patch
xarray-add-xas_split-fix.patch
mmhwpoison-refactor-soft_offline_huge_page-and-__soft_offline_page-fix.patch
mm-vmstat-fix-proc-sys-vm-stat_refresh-generating-false-warnings-fix-2.patch
mm-memory_hotplug-simplify-page-offlining-fix.patch
checkpatch-warn-on-self-assignments-checkpatch-fixes.patch
fs-binfmt_elf-use-pt_load-p_align-values-for-suitable-start-address-fix.patch
linux-next-rejects.patch
linux-next-git-rejects.patch
mm-madvise-introduce-process_madvise-syscall-an-external-memory-hinting-api-fix-fix.patch
kernel-forkc-export-kernel_thread-to-modules.patch
drivers-media-pci-ttpci-av7110_v4lc-fix-build.patch


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2020-09-14  4:26 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-14  4:26 + drivers-media-pci-ttpci-av7110_v4lc-fix-build.patch added to -mm tree akpm

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.