2009/12/12 Mike Lothian <m...@fireburn.co.uk>:
> Yip no audio
>
> However I don't get the:
>
> [drm] Enabling audio support
>
> line in my dmesg - it is listed as a valid device however

Checking radeon_device.c:
case CHIP_RV770:
case CHIP_RV730:
case CHIP_RV710:
case CHIP_RV740:
        rdev->asic = &rv770_asic;
        break;

So you use rv770_asic and that means rv770_init from rv770.c.

You can manually put

r = r600_audio_init(rdev);
if (r)
        return r; /* TODO error handling */

At end of rv770_init (just before "return 0"). You should see
"Enabling audio support" then, but as I said it probably won't work.

-- 
Rafał

------------------------------------------------------------------------------
Return on Information:
Google Enterprise Search pays you back
Get the facts.
http://p.sf.net/sfu/google-dev2dev
--
_______________________________________________
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel

Reply via email to