Changeset 733
- Timestamp:
- Sep 18, 2022, 12:08:15 AM (3 years ago)
- Location:
- GPL/branches/uniaud32-next
- Files:
-
- 4 edited
-
alsa-kernel/core/pcm_memory.c (modified) (1 diff)
-
alsa-kernel/pci/hda/hda_bind.c (modified) (2 diffs)
-
alsa-kernel/pci/hda/patch_realtek.c (modified) (2 diffs)
-
lib32/driver.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
GPL/branches/uniaud32-next/alsa-kernel/core/pcm_memory.c
r721 r733 491 491 vfree(runtime->dma_area); 492 492 } 493 #ifndef TARGET_OS2494 493 runtime->dma_area = __vmalloc(size, gfp_flags); 495 #else496 runtime->dma_area = vmalloc(size);497 #endif498 494 if (!runtime->dma_area) 499 495 return -ENOMEM; -
GPL/branches/uniaud32-next/alsa-kernel/pci/hda/hda_bind.c
r730 r733 238 238 static void codec_bind_module(struct hda_codec *codec) 239 239 { 240 #ifdef MODULE240 //#ifdef MODULE 241 241 request_codec_module(codec); 242 242 if (codec_probed(codec)) 243 243 return; 244 #endif244 //#endif 245 245 } 246 246 … … 327 327 err = codec_bind_generic(codec); 328 328 if (err < 0) { 329 codec_dbg(codec, "Unable to bind the codec \n");329 codec_dbg(codec, "Unable to bind the codec - err = %d\n",err); 330 330 return err; 331 331 } -
GPL/branches/uniaud32-next/alsa-kernel/pci/hda/patch_realtek.c
r725 r733 12528 12528 goto error; 12529 12529 12530 #ifndef TARGET_OS212531 12530 if (!spec->gen.no_analog && spec->gen.beep_nid) { 12532 12531 switch (codec->core.vendor_id) { … … 12547 12546 goto error; 12548 12547 } 12549 #endif 12548 12550 12549 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE); 12551 12550 -
GPL/branches/uniaud32-next/lib32/driver.c
r718 r733 714 714 { 715 715 int ret = 0; 716 rprintf(("device_attach")); 716 717 device_lock(dev); 717 718 if (dev->driver) {
Note:
See TracChangeset
for help on using the changeset viewer.
