Convert %q to %ll in format strings
authorguenther <guenther@openbsd.org>
Tue, 23 Aug 2016 03:28:01 +0000 (03:28 +0000)
committerguenther <guenther@openbsd.org>
Tue, 23 Aug 2016 03:28:01 +0000 (03:28 +0000)
ok natano@ krw@

sys/arch/sparc64/dev/ebus.c
sys/arch/sparc64/dev/ebus_mainbus.c
sys/arch/sparc64/dev/psycho.c
sys/arch/sparc64/dev/pyro.c
sys/arch/sparc64/dev/schizo.c
sys/arch/sparc64/sparc64/db_interface.c
sys/dev/ic/ncr53c9x.c

index e7c4f66..ff088f0 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ebus.c,v 1.23 2014/07/12 18:44:43 tedu Exp $  */
+/*     $OpenBSD: ebus.c,v 1.24 2016/08/23 03:28:01 guenther Exp $      */
 /*     $NetBSD: ebus.c,v 1.24 2001/07/25 03:49:54 eeh Exp $    */
 
 /*
@@ -465,8 +465,8 @@ _ebus_bus_map(bus_space_tag_t t, bus_space_tag_t t0, bus_addr_t offset,
                                       range[i].phys_lo;
                pciaddr += lo;
                DPRINTF(EDB_BUSMAP,
-                   ("\n_ebus_bus_map: mapping space %x paddr offset %qx "
-                   "pciaddr %qx\n", (int)t->default_type,
+                   ("\n_ebus_bus_map: mapping space %x paddr offset %llx "
+                   "pciaddr %llx\n", (int)t->default_type,
                    (unsigned long long)offset, (unsigned long long)pciaddr));
                 return ((*t->sparc_bus_map)(t, t0, pciaddr, size, flags, hp));
        }
@@ -497,7 +497,7 @@ ebus_bus_mmap(bus_space_tag_t t, bus_space_tag_t t0, bus_addr_t paddr,
                if (offset != paddr)
                        continue;
 
-               DPRINTF(EDB_BUSMAP, ("\n_ebus_bus_mmap: mapping paddr %qx\n",
+               DPRINTF(EDB_BUSMAP, ("\n_ebus_bus_mmap: mapping paddr %llx\n",
                    (unsigned long long)paddr));
                return ((*t->sparc_bus_mmap)(t, t0, paddr, off, prot, flags));
        }
index 8eb2084..7bfd719 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ebus_mainbus.c,v 1.9 2015/09/27 11:29:20 kettenis Exp $       */
+/*     $OpenBSD: ebus_mainbus.c,v 1.10 2016/08/23 03:28:01 guenther Exp $      */
 
 /*
  * Copyright (c) 2007 Mark Kettenis
@@ -226,7 +226,7 @@ ebus_mainbus_bus_map(bus_space_tag_t t, bus_space_tag_t t0, bus_addr_t offset,
                                    range[i].phys_lo;
                addr += lo;
                DPRINTF(EDB_BUSMAP,
-                   ("\n_ebus_mainbus_bus_map: paddr offset %qx addr %qx\n", 
+                   ("\n_ebus_mainbus_bus_map: paddr offset %llx addr %llx\n", 
                    (unsigned long long)offset, (unsigned long long)addr));
                 return ((*t->sparc_bus_map)(t, t0, addr, size, flags, hp));
        }
index 5dde142..997c975 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: psycho.c,v 1.73 2014/07/12 22:37:03 uebayasi Exp $    */
+/*     $OpenBSD: psycho.c,v 1.74 2016/08/23 03:28:01 guenther Exp $    */
 /*     $NetBSD: psycho.c,v 1.39 2001/10/07 20:30:41 eeh Exp $  */
 
 /*
@@ -1000,7 +1000,7 @@ psycho_bus_map(bus_space_tag_t t, bus_space_tag_t t0, bus_addr_t offset,
        struct psycho_pbm *pp = t->cookie;
        int i, ss;
 
-       DPRINTF(PDB_BUSMAP, ("\npsycho_bus_map: type %d off %qx sz %qx "
+       DPRINTF(PDB_BUSMAP, ("\npsycho_bus_map: type %d off %llx sz %llx "
            "flags %d", t->default_type, (unsigned long long)offset,
            (unsigned long long)size, flags));
 
@@ -1029,7 +1029,7 @@ psycho_bus_map(bus_space_tag_t t, bus_space_tag_t t0, bus_addr_t offset,
                paddr |= ((bus_addr_t)pp->pp_range[i].phys_hi) << 32;
                DPRINTF(PDB_BUSMAP,
                    ("\n_psycho_bus_map: mapping paddr space %lx offset %lx "
-                       "paddr %qx",
+                       "paddr %llx",
                    (long)ss, (long)offset,
                    (unsigned long long)paddr));
                return ((*t->sparc_bus_map)(t, t0, paddr, size, flags, hp));
@@ -1048,7 +1048,7 @@ psycho_bus_mmap(bus_space_tag_t t, bus_space_tag_t t0, bus_addr_t paddr,
 
        ss = t->default_type;
 
-       DPRINTF(PDB_BUSMAP, ("\n_psycho_bus_mmap: prot %d flags %d pa %qx",
+       DPRINTF(PDB_BUSMAP, ("\n_psycho_bus_mmap: prot %d flags %d pa %llx",
            prot, flags, (unsigned long long)paddr));
 
        if (t->parent == 0 || t->parent->sparc_bus_mmap == 0) {
@@ -1067,7 +1067,7 @@ psycho_bus_mmap(bus_space_tag_t t, bus_space_tag_t t0, bus_addr_t paddr,
                paddr = pp->pp_range[i].phys_lo + offset;
                paddr |= ((bus_addr_t)pp->pp_range[i].phys_hi) << 32;
                DPRINTF(PDB_BUSMAP, ("\npsycho_bus_mmap: mapping paddr "
-                   "space %lx offset %lx paddr %qx",
+                   "space %lx offset %lx paddr %llx",
                    (long)ss, (long)offset,
                    (unsigned long long)paddr));
                return ((*t->sparc_bus_mmap)(t, t0, paddr, off, prot, flags));
@@ -1293,16 +1293,16 @@ found:
         */
        if (intrmapptr) {
                intrmap = *intrmapptr;
-               DPRINTF(PDB_INTR, ("; read intrmap = %016qx",
+               DPRINTF(PDB_INTR, ("; read intrmap = %016llx",
                        (unsigned long long)intrmap));
 
                /* Enable the interrupt */
                intrmap |= INTMAP_V;
                DPRINTF(PDB_INTR, ("; addr of intrmapptr = %p", intrmapptr));
-               DPRINTF(PDB_INTR, ("; writing intrmap = %016qx",
+               DPRINTF(PDB_INTR, ("; writing intrmap = %016llx",
                        (unsigned long long)intrmap));
                *intrmapptr = intrmap;
-               DPRINTF(PDB_INTR, ("; reread intrmap = %016qx",
+               DPRINTF(PDB_INTR, ("; reread intrmap = %016llx",
                        (unsigned long long)(intrmap = *intrmapptr)));
        }
        return (ih);
index 668ee63..b95d6cc 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: pyro.c,v 1.28 2014/12/09 06:58:29 doug Exp $  */
+/*     $OpenBSD: pyro.c,v 1.29 2016/08/23 03:28:01 guenther Exp $      */
 
 /*
  * Copyright (c) 2002 Jason L. Wright (jason@thought.net)
@@ -534,7 +534,7 @@ pyro_bus_map(bus_space_tag_t t, bus_space_tag_t t0, bus_addr_t offset,
        struct pyro_pbm *pbm = t->cookie;
        int i, ss;
 
-       DPRINTF(PDB_BUSMAP, ("pyro_bus_map: type %d off %qx sz %qx flags %d",
+       DPRINTF(PDB_BUSMAP, ("pyro_bus_map: type %d off %llx sz %llx flags %d",
            t->default_type,
            (unsigned long long)offset,
            (unsigned long long)size,
@@ -578,7 +578,7 @@ pyro_bus_mmap(bus_space_tag_t t, bus_space_tag_t t0, bus_addr_t paddr,
 
        ss = t->default_type;
 
-       DPRINTF(PDB_BUSMAP, ("pyro_bus_mmap: prot %d flags %d pa %qx\n",
+       DPRINTF(PDB_BUSMAP, ("pyro_bus_mmap: prot %d flags %d pa %llx\n",
            prot, flags, (unsigned long long)paddr));
 
        if (t->parent == 0 || t->parent->sparc_bus_mmap == 0) {
index 1bedaf5..2079934 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: schizo.c,v 1.66 2014/07/12 18:44:43 tedu Exp $        */
+/*     $OpenBSD: schizo.c,v 1.67 2016/08/23 03:28:01 guenther Exp $    */
 
 /*
  * Copyright (c) 2002 Jason L. Wright (jason@thought.net)
@@ -669,7 +669,7 @@ schizo_bus_map(bus_space_tag_t t, bus_space_tag_t t0, bus_addr_t offset,
        struct schizo_pbm *pbm = t->cookie;
        int i, ss;
 
-       DPRINTF(SDB_BUSMAP, ("schizo_bus_map: type %d off %qx sz %qx flags %d",
+       DPRINTF(SDB_BUSMAP,("schizo_bus_map: type %d off %llx sz %llx flags %d",
            t->default_type,
            (unsigned long long)offset,
            (unsigned long long)size,
@@ -713,7 +713,7 @@ schizo_bus_mmap(bus_space_tag_t t, bus_space_tag_t t0, bus_addr_t paddr,
 
        ss = t->default_type;
 
-       DPRINTF(SDB_BUSMAP, ("schizo_bus_mmap: prot %d flags %d pa %qx\n",
+       DPRINTF(SDB_BUSMAP, ("schizo_bus_mmap: prot %d flags %d pa %llx\n",
            prot, flags, (unsigned long long)paddr));
 
        if (t->parent == 0 || t->parent->sparc_bus_mmap == 0) {
index 73fdeee..8b72b10 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: db_interface.c,v 1.42 2016/03/14 23:08:05 krw Exp $   */
+/*     $OpenBSD: db_interface.c,v 1.43 2016/08/23 03:28:01 guenther Exp $      */
 /*     $NetBSD: db_interface.c,v 1.61 2001/07/31 06:55:47 eeh Exp $ */
 
 /*
@@ -831,7 +831,7 @@ db_pmap_kernel(addr, have_addr, count, modif)
                /* lookup an entry for this VA */
                
                if ((data = pseg_get(&kernel_pmap_, (vaddr_t)addr))) {
-                       db_printf("pmap_kernel(%p)->pm_segs[%lx][%lx][%lx]=>%qx\n",
+                       db_printf("pmap_kernel(%p)->pm_segs[%lx][%lx][%lx]=>%llx\n",
                                  (void *)addr, (u_long)va_to_seg(addr), 
                                  (u_long)va_to_dir(addr), (u_long)va_to_pte(addr),
                                  (unsigned long long)data);
index 6048c47..75d79d0 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ncr53c9x.c,v 1.61 2015/11/08 22:27:10 miod Exp $      */
+/*     $OpenBSD: ncr53c9x.c,v 1.62 2016/08/23 03:28:01 guenther Exp $  */
 /*     $NetBSD: ncr53c9x.c,v 1.56 2000/11/30 14:41:46 thorpej Exp $    */
 
 /*
@@ -1211,7 +1211,7 @@ ncr53c9x_dequeue(sc, ecb)
        li = TINFO_LUN(ti, lun);
 #ifdef DIAGNOSTIC
        if ((!li) || (li->lun != lun))
-               panic("ncr53c9x_dequeue: lun %qx for ecb %p does not exist",
+               panic("ncr53c9x_dequeue: lun %llx for ecb %p does not exist",
                    (long long)lun, ecb);
 #endif
        if (li->untagged == ecb) {
@@ -1221,7 +1221,7 @@ ncr53c9x_dequeue(sc, ecb)
        if (ecb->tag[0] && li->queued[ecb->tag[1]]) {
 #ifdef DIAGNOSTIC
                if (li->queued[ecb->tag[1]] && (li->queued[ecb->tag[1]] != ecb))
-                       panic("ncr53c9x_dequeue: slot %d for lun %qx has %p "
+                       panic("ncr53c9x_dequeue: slot %d for lun %llx has %p "
                            "instead of ecb %p", ecb->tag[1],
                            (long long)lun,
                            li->queued[ecb->tag[1]], ecb);