Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/pci Harmonize bus_dmatag_subregion() handling with o...



details:   https://anonhg.NetBSD.org/src/rev/3440a4469c23
branches:  trunk
changeset: 745413:3440a4469c23
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Sun Mar 01 15:46:32 2020 +0000

description:
Harmonize bus_dmatag_subregion() handling with other drivers.

diffstat:

 sys/dev/pci/if_stge.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (29 lines):

diff -r b81aacd55671 -r 3440a4469c23 sys/dev/pci/if_stge.c
--- a/sys/dev/pci/if_stge.c     Sun Mar 01 15:43:58 2020 +0000
+++ b/sys/dev/pci/if_stge.c     Sun Mar 01 15:46:32 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: if_stge.c,v 1.80 2020/02/29 20:39:09 thorpej Exp $     */
+/*     $NetBSD: if_stge.c,v 1.81 2020/03/01 15:46:32 thorpej Exp $     */
 
 /*-
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -35,7 +35,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_stge.c,v 1.80 2020/02/29 20:39:09 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_stge.c,v 1.81 2020/03/01 15:46:32 thorpej Exp $");
 
 
 #include <sys/param.h>
@@ -454,8 +454,8 @@
                                         &sc->sc_dmat,
                                         BUS_DMA_WAITOK) != 0) {
                        aprint_error_dev(self,
-                           "unable to create 40-bit DMA tag\n");
-                       return;
+                           "WARNING: failed to restrict dma range,"
+                           " falling back to parent bus dma range\n");
                }
        } else {
                sc->sc_dmat = pa->pa_dmat;



Home | Main Index | Thread Index | Old Index