/*
 *  linux/fs/isofs/util.c
 */

#include <linux/time.h>
#include "isofs.h"

/* 
 * We have to convert from a MM/DD/YY format to the Unix ctime format.
 * We have to take into account leap years and all of that good stuff.
 * Unfortunately, the kernel does not have the information on hand to
 * take into account daylight savings time, but it shouldn't matter.
 * The time stored should be localtime (with or without DST in effect),
 * and the timezone offset should hold the offset required to get back
 * to GMT.  Thus  we should always be correct.
 */

int iso_date(char * p, int flag)
{
	int year, month, day, hour, minute, second, tz;
	int crtime;

	year = p[0];
	month = p[1];
	day = p[2];
	hour = p[3];
	minute = p[4];
	second = p[5];
	if (flag == 0) tz = p[6]; /* High sierra has no time zone */
	else tz = 0;
	
	if (year < 0) {
		crtime = 0;
	} else {
		crtime = mktime64(year+1900, month, day, hour, minute, second);

		/* sign extend */
		if (tz & 0x80)
			tz |= (-1 << 8);
		
		/* 
		 * The timezone offset is unreliable on some disks,
		 * so we make a sanity check.  In no case is it ever
		 * more than 13 hours from GMT, which is 52*15min.
		 * The time is always stored in localtime with the
		 * timezone offset being what get added to GMT to
		 * get to localtime.  Thus we need to subtract the offset
		 * to get to true GMT, which is what we store the time
		 * as internally.  On the local system, the user may set
		 * their timezone any way they wish, of course, so GMT
		 * gets converted back to localtime on the receiving
		 * system.
		 *
		 * NOTE: mkisofs in versions prior to mkisofs-1.10 had
		 * the sign wrong on the timezone offset.  This has now
		 * been corrected there too, but if you are getting screwy
		 * results this may be the explanation.  If enough people
		 * complain, a user configuration option could be added
		 * to add the timezone offset in with the wrong sign
		 * for 'compatibility' with older discs, but I cannot see how
		 * it will matter that much.
		 *
		 * Thanks to kuhlmav@elec.canterbury.ac.nz (Volker Kuhlmann)
		 * for pointing out the sign error.
		 */
		if (-52 <= tz && tz <= 52)
			crtime -= tz * 15 * 60;
	}
	return crtime;
}		
fb7'>diff</a></td><td class='form'><form class='right' method='get' action='/cgit.cgi/linux/net-next.git/log/include/sound'>
<input type='hidden' name='h' value='nds-private-remove'/><input type='hidden' name='id' value='37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'/><select name='qt'>
<option value='grep'>log msg</option>
<option value='author'>author</option>
<option value='committer'>committer</option>
<option value='range'>range</option>
</select>
<input class='txt' type='search' size='10' name='q' value=''/>
<input type='submit' value='search'/>
</form>
</td></tr></table>
<div class='path'>path: <a href='/cgit.cgi/linux/net-next.git/tree/?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>root</a>/<a href='/cgit.cgi/linux/net-next.git/tree/include?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>include</a>/<a href='/cgit.cgi/linux/net-next.git/tree/include/sound?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>sound</a></div><div class='content'><table summary='tree listing' class='list'>
<tr class='nohover'><th class='left'>Mode</th><th class='left'>Name</th><th class='right'>Size</th><th/></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/ac97_codec.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>ac97_codec.h</a></td><td class='ls-size'>29072</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/ac97_codec.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/ac97_codec.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/aci.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>aci.h</a></td><td class='ls-size'>2419</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/aci.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/aci.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/ad1816a.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>ad1816a.h</a></td><td class='ls-size'>5514</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/ad1816a.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/ad1816a.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/ad1843.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>ad1843.h</a></td><td class='ls-size'>1516</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/ad1843.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/ad1843.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/adau1373.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>adau1373.h</a></td><td class='ls-size'>699</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/adau1373.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/adau1373.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/aess.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>aess.h</a></td><td class='ls-size'>1668</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/aess.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/aess.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/ak4113.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>ak4113.h</a></td><td class='ls-size'>11112</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/ak4113.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/ak4113.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/ak4114.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>ak4114.h</a></td><td class='ls-size'>10424</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/ak4114.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/ak4114.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/ak4117.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>ak4117.h</a></td><td class='ls-size'>9193</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/ak4117.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/ak4117.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/ak4531_codec.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>ak4531_codec.h</a></td><td class='ls-size'>3173</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/ak4531_codec.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/ak4531_codec.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/ak4641.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>ak4641.h</a></td><td class='ls-size'>622</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/ak4641.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/ak4641.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/ak4xxx-adda.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>ak4xxx-adda.h</a></td><td class='ls-size'>3416</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/ak4xxx-adda.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/ak4xxx-adda.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/alc5623.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>alc5623.h</a></td><td class='ls-size'>497</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/alc5623.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/alc5623.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/asequencer.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>asequencer.h</a></td><td class='ls-size'>3670</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/asequencer.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/asequencer.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/asound.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>asound.h</a></td><td class='ls-size'>1285</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/asound.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/asound.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/asoundef.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>asoundef.h</a></td><td class='ls-size'>17098</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/asoundef.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/asoundef.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/atmel-abdac.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>atmel-abdac.h</a></td><td class='ls-size'>639</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/atmel-abdac.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/atmel-abdac.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/atmel-ac97c.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>atmel-ac97c.h</a></td><td class='ls-size'>1342</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/atmel-ac97c.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/atmel-ac97c.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/compress_driver.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>compress_driver.h</a></td><td class='ls-size'>6772</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/compress_driver.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/compress_driver.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/control.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>control.h</a></td><td class='ls-size'>8704</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/control.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/control.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/core.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>core.h</a></td><td class='ls-size'>14380</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/core.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/core.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/cs35l33.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>cs35l33.h</a></td><td class='ls-size'>1034</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/cs35l33.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/cs35l33.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/cs35l34.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>cs35l34.h</a></td><td class='ls-size'>887</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/cs35l34.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/cs35l34.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/cs4231-regs.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>cs4231-regs.h</a></td><td class='ls-size'>8480</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/cs4231-regs.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/cs4231-regs.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/cs4271.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>cs4271.h</a></td><td class='ls-size'>1417</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/cs4271.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/cs4271.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/cs42l52.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>cs42l52.h</a></td><td class='ls-size'>738</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/cs42l52.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/cs42l52.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/cs42l56.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>cs42l56.h</a></td><td class='ls-size'>1192</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/cs42l56.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/cs42l56.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/cs42l73.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>cs42l73.h</a></td><td class='ls-size'>507</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/cs42l73.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/cs42l73.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/cs8403.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>cs8403.h</a></td><td class='ls-size'>8833</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/cs8403.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/cs8403.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/cs8427.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>cs8427.h</a></td><td class='ls-size'>10649</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/cs8427.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/cs8427.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/da7213.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>da7213.h</a></td><td class='ls-size'>1178</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/da7213.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/da7213.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/da7218.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>da7218.h</a></td><td class='ls-size'>2681</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/da7218.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/da7218.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/da7219-aad.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>da7219-aad.h</a></td><td class='ls-size'>2476</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/da7219-aad.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/da7219-aad.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/da7219.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>da7219.h</a></td><td class='ls-size'>1064</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/da7219.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/da7219.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/da9055.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>da9055.h</a></td><td class='ls-size'>914</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/da9055.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/da9055.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/designware_i2s.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>designware_i2s.h</a></td><td class='ls-size'>2249</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/designware_i2s.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/designware_i2s.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/dmaengine_pcm.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>dmaengine_pcm.h</a></td><td class='ls-size'>6157</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/dmaengine_pcm.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/dmaengine_pcm.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/emu10k1.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>emu10k1.h</a></td><td class='ls-size'>91396</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/emu10k1.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/emu10k1.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/emu10k1_synth.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>emu10k1_synth.h</a></td><td class='ls-size'>1382</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/emu10k1_synth.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/emu10k1_synth.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/emu8000.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>emu8000.h</a></td><td class='ls-size'>4109</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/emu8000.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/emu8000.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/emu8000_reg.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>emu8000_reg.h</a></td><td class='ls-size'>10459</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/emu8000_reg.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/emu8000_reg.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/emux_legacy.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>emux_legacy.h</a></td><td class='ls-size'>5503</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/emux_legacy.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/emux_legacy.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/emux_synth.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>emux_synth.h</a></td><td class='ls-size'>7649</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/emux_synth.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/emux_synth.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/es1688.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>es1688.h</a></td><td class='ls-size'>3618</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/es1688.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/es1688.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/gus.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>gus.h</a></td><td class='ls-size'>20691</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/gus.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/gus.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/hda_chmap.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>hda_chmap.h</a></td><td class='ls-size'>2621</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/hda_chmap.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/hda_chmap.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/hda_hwdep.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>hda_hwdep.h</a></td><td class='ls-size'>1412</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/hda_hwdep.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/hda_hwdep.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/hda_i915.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>hda_i915.h</a></td><td class='ls-size'>1645</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/hda_i915.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/hda_i915.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/hda_register.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>hda_register.h</a></td><td class='ls-size'>9475</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/hda_register.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/hda_register.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/hda_regmap.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>hda_regmap.h</a></td><td class='ls-size'>6714</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/hda_regmap.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/hda_regmap.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/hda_verbs.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>hda_verbs.h</a></td><td class='ls-size'>17130</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/hda_verbs.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/hda_verbs.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/hdaudio.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>hdaudio.h</a></td><td class='ls-size'>18455</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/hdaudio.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/hdaudio.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/hdaudio_ext.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>hdaudio_ext.h</a></td><td class='ls-size'>7119</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/hdaudio_ext.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/hdaudio_ext.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/hdmi-codec.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>hdmi-codec.h</a></td><td class='ls-size'>2290</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/hdmi-codec.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/hdmi-codec.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/hwdep.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>hwdep.h</a></td><td class='ls-size'>2624</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/hwdep.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/hwdep.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/i2c.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>i2c.h</a></td><td class='ls-size'>3555</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/i2c.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/i2c.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>
<tr><td class='ls-mode'>-rw-r--r--</td><td><a class='ls-blob h' href='/cgit.cgi/linux/net-next.git/tree/include/sound/info.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>info.h</a></td><td class='ls-size'>7584</td><td><a class='button' href='/cgit.cgi/linux/net-next.git/log/include/sound/info.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>log</a><a class='button' href='/cgit.cgi/linux/net-next.git/plain/include/sound/info.h?h=nds-private-remove&amp;id=37fabbf4d489cc2e1cbf7cde816d9453a65ddfb7'>plain</a></td></tr>