Deleted Added
full compact
hdacc.c (242352) hdacc.c (243793)
1/*-
2 * Copyright (c) 2006 Stephane E. Potvin <sepotvin@videotron.ca>
3 * Copyright (c) 2006 Ariff Abdullah <ariff@FreeBSD.org>
4 * Copyright (c) 2008-2012 Alexander Motin <mav@FreeBSD.org>
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

--- 27 unchanged lines hidden (view full) ---

36
37#include <dev/sound/pcm/sound.h>
38
39#include <sys/ctype.h>
40
41#include <dev/sound/pci/hda/hda_reg.h>
42#include <dev/sound/pci/hda/hdac.h>
43
1/*-
2 * Copyright (c) 2006 Stephane E. Potvin <sepotvin@videotron.ca>
3 * Copyright (c) 2006 Ariff Abdullah <ariff@FreeBSD.org>
4 * Copyright (c) 2008-2012 Alexander Motin <mav@FreeBSD.org>
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

--- 27 unchanged lines hidden (view full) ---

36
37#include <dev/sound/pcm/sound.h>
38
39#include <sys/ctype.h>
40
41#include <dev/sound/pci/hda/hda_reg.h>
42#include <dev/sound/pci/hda/hdac.h>
43
44SND_DECLARE_FILE("$FreeBSD: head/sys/dev/sound/pci/hda/hdacc.c 242352 2012-10-30 10:59:42Z mav $");
44SND_DECLARE_FILE("$FreeBSD: head/sys/dev/sound/pci/hda/hdacc.c 243793 2012-12-02 17:54:52Z eadler $");
45
46struct hdacc_fg {
47 device_t dev;
48 nid_t nid;
49 uint8_t type;
50 uint32_t subsystem_id;
51};
52

--- 249 unchanged lines hidden (view full) ---

302 { HDA_CODEC_NVIDIAMCP78_2, 0, "NVIDIA MCP78" },
303 { HDA_CODEC_NVIDIAMCP78_3, 0, "NVIDIA MCP78" },
304 { HDA_CODEC_NVIDIAMCP78_4, 0, "NVIDIA MCP78" },
305 { HDA_CODEC_NVIDIAMCP7A, 0, "NVIDIA MCP7A" },
306 { HDA_CODEC_NVIDIAGT220, 0, "NVIDIA GT220" },
307 { HDA_CODEC_NVIDIAGT21X, 0, "NVIDIA GT21x" },
308 { HDA_CODEC_NVIDIAMCP89, 0, "NVIDIA MCP89" },
309 { HDA_CODEC_NVIDIAGT240, 0, "NVIDIA GT240" },
45
46struct hdacc_fg {
47 device_t dev;
48 nid_t nid;
49 uint8_t type;
50 uint32_t subsystem_id;
51};
52

--- 249 unchanged lines hidden (view full) ---

302 { HDA_CODEC_NVIDIAMCP78_2, 0, "NVIDIA MCP78" },
303 { HDA_CODEC_NVIDIAMCP78_3, 0, "NVIDIA MCP78" },
304 { HDA_CODEC_NVIDIAMCP78_4, 0, "NVIDIA MCP78" },
305 { HDA_CODEC_NVIDIAMCP7A, 0, "NVIDIA MCP7A" },
306 { HDA_CODEC_NVIDIAGT220, 0, "NVIDIA GT220" },
307 { HDA_CODEC_NVIDIAGT21X, 0, "NVIDIA GT21x" },
308 { HDA_CODEC_NVIDIAMCP89, 0, "NVIDIA MCP89" },
309 { HDA_CODEC_NVIDIAGT240, 0, "NVIDIA GT240" },
310 { HDA_CODEC_NVIDIAGT440, 0, "NVIDIA GT440" },
310 { HDA_CODEC_INTELIP, 0, "Intel Ibex Peak" },
311 { HDA_CODEC_INTELBL, 0, "Intel Bearlake" },
312 { HDA_CODEC_INTELCA, 0, "Intel Cantiga" },
313 { HDA_CODEC_INTELEL, 0, "Intel Eaglelake" },
314 { HDA_CODEC_INTELIP2, 0, "Intel Ibex Peak" },
315 { HDA_CODEC_INTELCPT, 0, "Intel Cougar Point" },
316 { HDA_CODEC_INTELPPT, 0, "Intel Panther Point" },
317 { HDA_CODEC_INTELCL, 0, "Intel Crestline" },

--- 401 unchanged lines hidden ---
311 { HDA_CODEC_INTELIP, 0, "Intel Ibex Peak" },
312 { HDA_CODEC_INTELBL, 0, "Intel Bearlake" },
313 { HDA_CODEC_INTELCA, 0, "Intel Cantiga" },
314 { HDA_CODEC_INTELEL, 0, "Intel Eaglelake" },
315 { HDA_CODEC_INTELIP2, 0, "Intel Ibex Peak" },
316 { HDA_CODEC_INTELCPT, 0, "Intel Cougar Point" },
317 { HDA_CODEC_INTELPPT, 0, "Intel Panther Point" },
318 { HDA_CODEC_INTELCL, 0, "Intel Crestline" },

--- 401 unchanged lines hidden ---