| 
									
										
										
										
											2017-07-28 19:46:05 -03:00
										 |  |  | # See docs/devel/tracing.txt for syntax documentation. | 
					
						
							| 
									
										
										
										
											2016-06-16 09:39:58 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-14 19:09:26 +01:00
										 |  |  | # cs4231.c | 
					
						
							| 
									
										
										
										
											2016-06-16 09:39:58 +01:00
										 |  |  | cs4231_mem_readl_dreg(uint32_t reg, uint32_t ret) "read dreg %d: 0x%02x" | 
					
						
							|  |  |  | cs4231_mem_readl_reg(uint32_t reg, uint32_t ret) "read reg %d: 0x%08x" | 
					
						
							|  |  |  | cs4231_mem_writel_reg(uint32_t reg, uint32_t old, uint32_t val) "write reg %d: 0x%08x -> 0x%08x" | 
					
						
							|  |  |  | cs4231_mem_writel_dreg(uint32_t reg, uint32_t old, uint32_t val) "write dreg %d: 0x%02x -> 0x%02x" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-14 19:09:26 +01:00
										 |  |  | # milkymist-ac97.c | 
					
						
							| 
									
										
											  
											
												trace-events: fix code style: print 0x before hex numbers
The only exception are groups of numers separated by symbols
'.', ' ', ':', '/', like 'ab.09.7d'.
This patch is made by the following:
> find . -name trace-events | xargs python script.py
where script.py is the following python script:
=========================
 #!/usr/bin/env python
import sys
import re
import fileinput
rhex = '%[-+ *.0-9]*(?:[hljztL]|ll|hh)?(?:x|X|"\s*PRI[xX][^"]*"?)'
rgroup = re.compile('((?:' + rhex + '[.:/ ])+' + rhex + ')')
rbad = re.compile('(?<!0x)' + rhex)
files = sys.argv[1:]
for fname in files:
    for line in fileinput.input(fname, inplace=True):
        arr = re.split(rgroup, line)
        for i in range(0, len(arr), 2):
            arr[i] = re.sub(rbad, '0x\g<0>', arr[i])
        sys.stdout.write(''.join(arr))
=========================
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Acked-by: Cornelia Huck <cohuck@redhat.com>
Message-id: 20170731160135.12101-5-vsementsov@virtuozzo.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
											
										 
											2017-07-31 19:01:35 +03:00
										 |  |  | milkymist_ac97_memory_read(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x" | 
					
						
							|  |  |  | milkymist_ac97_memory_write(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x" | 
					
						
							| 
									
										
										
										
											2016-06-16 09:39:58 +01:00
										 |  |  | milkymist_ac97_pulse_irq_crrequest(void) "Pulse IRQ CR request" | 
					
						
							|  |  |  | milkymist_ac97_pulse_irq_crreply(void) "Pulse IRQ CR reply" | 
					
						
							|  |  |  | milkymist_ac97_pulse_irq_dmaw(void) "Pulse IRQ DMA write" | 
					
						
							|  |  |  | milkymist_ac97_pulse_irq_dmar(void) "Pulse IRQ DMA read" | 
					
						
							|  |  |  | milkymist_ac97_in_cb(int avail, uint32_t remaining) "avail %d remaining %u" | 
					
						
							|  |  |  | milkymist_ac97_in_cb_transferred(int transferred) "transferred %d" | 
					
						
							|  |  |  | milkymist_ac97_out_cb(int free, uint32_t remaining) "free %d remaining %u" | 
					
						
							|  |  |  | milkymist_ac97_out_cb_transferred(int transferred) "transferred %d" | 
					
						
							| 
									
										
										
										
											2018-06-22 13:11:57 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-14 19:09:26 +01:00
										 |  |  | # hda-codec.c | 
					
						
							| 
									
										
										
										
											2018-06-22 13:11:57 +02:00
										 |  |  | hda_audio_running(const char *stream, int nr, bool running) "st %s, nr %d, run %d" | 
					
						
							|  |  |  | hda_audio_format(const char *stream, int chan, const char *fmt, int freq) "st %s, %d x %s @ %d Hz" | 
					
						
							| 
									
										
										
										
											2018-06-22 13:11:58 +02:00
										 |  |  | hda_audio_adjust(const char *stream, int pos) "st %s, pos %d" | 
					
						
							| 
									
										
										
										
											2018-06-22 13:11:59 +02:00
										 |  |  | hda_audio_overrun(const char *stream) "st %s" |