/include/linux/ |
D | parport_pc.h | 65 printk (KERN_DEBUG "parport_pc_write_data(%p,0x%02x)\n", p, d); in parport_pc_write_data() 74 printk (KERN_DEBUG "parport_pc_read_data(%p) = 0x%02x\n", in parport_pc_read_data() 91 printk (KERN_DEBUG "*** parport state (%s): ecr=[%s", str, ecr_modes[(ecr & 0xe0) >> 5]); in dump_parport_state() 92 if (ecr & 0x10) printk (",nErrIntrEn"); in dump_parport_state() 93 if (ecr & 0x08) printk (",dmaEn"); in dump_parport_state() 94 if (ecr & 0x04) printk (",serviceIntr"); in dump_parport_state() 95 if (ecr & 0x02) printk (",f_full"); in dump_parport_state() 96 if (ecr & 0x01) printk (",f_empty"); in dump_parport_state() 98 printk ("] dcr(%s)=[", i ? "soft" : "hard"); in dump_parport_state() 102 printk ("rev"); in dump_parport_state() [all …]
|
D | device-mapper.h | 301 printk(KERN_CRIT DM_NAME ": " DM_MSG_PREFIX ": " f "\n", ## arg) 304 printk(KERN_ERR DM_NAME ": " DM_MSG_PREFIX ": " f "\n", ## arg) 308 printk(KERN_ERR DM_NAME ": " DM_MSG_PREFIX ": " \ 313 printk(KERN_WARNING DM_NAME ": " DM_MSG_PREFIX ": " f "\n", ## arg) 317 printk(KERN_WARNING DM_NAME ": " DM_MSG_PREFIX ": " \ 322 printk(KERN_INFO DM_NAME ": " DM_MSG_PREFIX ": " f "\n", ## arg) 326 printk(KERN_INFO DM_NAME ": " DM_MSG_PREFIX ": " f \ 332 printk(KERN_DEBUG DM_NAME ": " DM_MSG_PREFIX " DEBUG: " f "\n", ## arg) 336 printk(KERN_DEBUG DM_NAME ": " DM_MSG_PREFIX ": " f \
|
D | kernel.h | 238 asmlinkage int printk(const char * fmt, ...) 249 static inline int printk(const char *s, ...) 251 static inline int __cold printk(const char *s, ...) { return 0; } in printk() function 343 printk(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__) 345 printk(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__) 347 printk(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__) 349 printk(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__) 351 printk(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__) 353 printk(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__) 355 printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__) [all …]
|
D | hdlc.h | 92 printk("...\n"); in debug_frame() 95 printk(" %02X", skb->data[i]); in debug_frame() 97 printk("\n"); in debug_frame()
|
D | kallsyms.h | 109 printk("[<%p>] %pS\n", (void *) ip, (void *) ip); in print_ip_sym()
|
D | cycx_x25.h | 34 #define dprintk(level, format, a...) if (cycx_debug >= level) printk(format, ##a)
|
D | jbd.h | 63 printk (KERN_DEBUG "(%s, %d): %s: ", \ 65 printk (f, ## a); \ 272 printk(KERN_ERR \ 274 printk(KERN_ERR why "\n"); \ 1007 printk (KERN_ERR "JBD unimplemented function %s\n", __func__); \
|
/include/linux/mtd/ |
D | pfow.h | 132 printk(KERN_NOTICE"DSR.15: (0) Device not Available\n"); in print_drs_error() 134 printk(KERN_NOTICE"DSR.9,8: (11) Attempt to program invalid " in print_drs_error() 137 printk(KERN_NOTICE"DSR.9,8: (10) Object Mode Program attempt " in print_drs_error() 140 printk(KERN_NOTICE"DSR.9,8: (01) Program attempt in region " in print_drs_error() 143 printk(KERN_NOTICE"DSR.7: (0) Device is Busy\n"); in print_drs_error() 145 printk(KERN_NOTICE"DSR.6: (1) Erase Suspended\n"); in print_drs_error() 147 printk(KERN_NOTICE"DSR.5: (1) Erase/Blank check error\n"); in print_drs_error() 149 printk(KERN_NOTICE"DSR.4: (1) Program Error\n"); in print_drs_error() 151 printk(KERN_NOTICE"DSR.3: (1) Vpp low detect, operation " in print_drs_error() 154 printk(KERN_NOTICE"DSR.2: (1) Program suspended\n"); in print_drs_error() [all …]
|
/include/net/irda/ |
D | irda.h | 70 printk(KERN_DEBUG args); \ 74 printk( "Assertion failed! %s:%s:%d %s\n", \ 84 #define IRDA_WARNING(args...) do { if (net_ratelimit()) printk(KERN_WARNING args); } while (0) 85 #define IRDA_MESSAGE(args...) do { if (net_ratelimit()) printk(KERN_INFO args); } while (0) 86 #define IRDA_ERROR(args...) do { if (net_ratelimit()) printk(KERN_ERR args); } while (0)
|
/include/media/ |
D | saa7146.h | 33 #define DEBUG_PROLOG printk("%s: %s(): ",KBUILD_MODNAME, __func__) 34 #define INFO(x) { printk("%s: ",KBUILD_MODNAME); printk x; } 36 #define ERR(x) { DEBUG_PROLOG; printk x; } 38 #define DEB_S(x) if (0!=(DEBUG_VARIABLE&0x01)) { DEBUG_PROLOG; printk x; } /* simple debug messa… 39 #define DEB_D(x) if (0!=(DEBUG_VARIABLE&0x02)) { DEBUG_PROLOG; printk x; } /* more detailed debu… 40 #define DEB_EE(x) if (0!=(DEBUG_VARIABLE&0x04)) { DEBUG_PROLOG; printk x; } /* print enter and ex… 41 #define DEB_I2C(x) if (0!=(DEBUG_VARIABLE&0x08)) { DEBUG_PROLOG; printk x; } /* i2c debug messages… 42 #define DEB_VBI(x) if (0!=(DEBUG_VARIABLE&0x10)) { DEBUG_PROLOG; printk x; } /* vbi debug messages… 43 #define DEB_INT(x) if (0!=(DEBUG_VARIABLE&0x20)) { DEBUG_PROLOG; printk x; } /* interrupt debug me… 44 #define DEB_CAP(x) if (0!=(DEBUG_VARIABLE&0x40)) { DEBUG_PROLOG; printk x; } /* capture debug mess…
|
/include/linux/usb/ |
D | usbnet.h | 198 printk(KERN_DEBUG "%s: " fmt "\n" , (usbnet)->net->name , ## arg) 201 ({ if (0) printk(KERN_DEBUG "%s: " fmt "\n" , (usbnet)->net->name , \ 206 printk(KERN_ERR "%s: " fmt "\n" , (usbnet)->net->name , ## arg) 208 printk(KERN_WARNING "%s: " fmt "\n" , (usbnet)->net->name , ## arg) 211 printk(KERN_INFO "%s: " fmt "\n" , (usbnet)->net->name , ## arg); \
|
D | serial.h | 313 printk("%.2x ", data[i]); in usb_serial_debug_data() 314 printk("\n"); in usb_serial_debug_data() 323 printk(KERN_DEBUG "%s: " format "\n" , __FILE__ , \
|
/include/asm-m32r/ |
D | pgtable-2level.h | 22 printk("%s:%d: bad pte %08lx.\n", __FILE__, __LINE__, pte_val(e)) 24 printk("%s:%d: bad pmd %08lx.\n", __FILE__, __LINE__, pmd_val(e)) 26 printk("%s:%d: bad pgd %08lx.\n", __FILE__, __LINE__, pgd_val(e))
|
D | hardirq.h | 31 printk(KERN_CRIT "unexpected IRQ trap at vector %02x\n", irq); in ack_bad_irq()
|
/include/asm-mn10300/ |
D | pci.h | 19 printk(KERN_DEBUG "PCIBRIDGE[%08x]: "FMT"\n", \ 24 printk(KERN_DEBUG "PCI[%02x:%02x.%x + %02x]: "FMT"\n", \
|
/include/linux/wimax/ |
D | debug.h | 177 printk(KERN_ERR "E: Corrupt dev %p\n", dev); in __d_head() 204 printk(KERN_ERR "%s%s%s: " f, head, __func__, tag, ##a); \ 445 printk(KERN_ERR "%s: Can't create debugfs entry %s: " \
|
/include/asm-generic/ |
D | bug.h | 44 printk("BUG: failure at %s:%d/%s()!\n", __FILE__, __LINE__, __func__); \ 68 #define __WARN_printf(arg...) do { printk(arg); __WARN(); } while (0)
|
/include/video/ |
D | cyblafb.h | 7 #define debug(f,a...) printk("%s:" f, __func__ , ## a); 12 #define output(f, a...) printk("cyblafb: " f, ## a)
|
/include/linux/netfilter_ipv4/ |
D | ip_queue.h | 12 #define QDEBUG(x...) printk(KERN_DEBUG ## x)
|
/include/linux/sunrpc/ |
D | debug.h | 57 # define dfprintk(fac, args...) do { ifdebug(fac) printk(args); } while(0)
|
/include/net/9p/ |
D | 9p.h | 66 printk(KERN_NOTICE "(%8.8d) " \ 69 printk(KERN_NOTICE "-- %s (%d): " \ 80 printk(level "9p: %s (%d): " \
|
/include/asm-frv/ |
D | math-emu.h | 110 printk(fmt, ## args); \ 120 printk("You just hit an unimplemented " \ 122 printk("Please report this to ....\n"); \ 257 jsr printk
|
/include/net/ |
D | ip_vs.h | 107 printk(KERN_DEBUG "IPVS: " msg); \ 113 printk(KERN_ERR "IPVS: " msg); \ 125 printk(KERN_DEBUG "IPVS: " msg); \ 130 printk(KERN_DEBUG "IPVS: " msg); \ 153 #define IP_VS_ERR(msg...) printk(KERN_ERR "IPVS: " msg) 154 #define IP_VS_INFO(msg...) printk(KERN_INFO "IPVS: " msg) 156 printk(KERN_WARNING "IPVS: " msg) 160 printk(KERN_ERR "IPVS: " msg); \ 167 printk(KERN_DEBUG "Enter: %s, %s line %i\n", \ 173 printk(KERN_DEBUG "Leave: %s, %s line %i\n", \
|
/include/net/bluetooth/ |
D | bluetooth.h | 67 #define BT_INFO(fmt, arg...) printk(KERN_INFO "Bluetooth: " fmt "\n" , ## arg) 68 #define BT_ERR(fmt, arg...) printk(KERN_ERR "%s: " fmt "\n" , __func__ , ## arg)
|
/include/net/netfilter/ |
D | nf_conntrack_tuple.h | 115 printk("tuple %p: %u %pI4:%hu -> %pI4:%hu\n", in nf_ct_dump_tuple_ip() 125 printk("tuple %p: %u %pI6 %hu -> %pI6 %hu\n", in nf_ct_dump_tuple_ipv6()
|