mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-02 22:41:07 +00:00
9be385980d
Use Coccinelle script to replace 'ret = E; return ret' with 'return E'. The script will do the substitution only when the function return type and variable type are the same. Manual fixups: * audio/audio.c: coding style of "read (...)" and "write (...)" * block/qcow2-cluster.c: wrap line to make it shorter * block/qcow2-refcount.c: change indentation of wrapped line * target-tricore/op_helper.c: fix coding style of "remainder|quotient" * target-mips/dsp_helper.c: reverted changes because I don't want to argue about checkpatch.pl * ui/qemu-pixman.c: fix line indentation * block/rbd.c: restore blank line between declarations and statements Reviewed-by: Eric Blake <eblake@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Message-Id: <1465855078-19435-4-git-send-email-ehabkost@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> [Unused Coccinelle rule name dropped along with a redundant comment; whitespace touched up in block/qcow2-cluster.c; stale commit message paragraph deleted] Signed-off-by: Markus Armbruster <armbru@redhat.com>
39 lines
1 KiB
C
39 lines
1 KiB
C
/*
|
|
* QTest testcase for Intel HDA
|
|
*
|
|
* Copyright (c) 2014 SUSE LINUX Products GmbH
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
* See the COPYING file in the top-level directory.
|
|
*/
|
|
|
|
#include "qemu/osdep.h"
|
|
#include "libqtest.h"
|
|
|
|
#define HDA_ID "hda0"
|
|
#define CODEC_DEVICES " -device hda-output,bus=" HDA_ID ".0" \
|
|
" -device hda-micro,bus=" HDA_ID ".0" \
|
|
" -device hda-duplex,bus=" HDA_ID ".0"
|
|
|
|
/* Tests only initialization so far. TODO: Replace with functional tests */
|
|
static void ich6_test(void)
|
|
{
|
|
qtest_start("-device intel-hda,id=" HDA_ID CODEC_DEVICES);
|
|
qtest_end();
|
|
}
|
|
|
|
static void ich9_test(void)
|
|
{
|
|
qtest_start("-machine q35 -device ich9-intel-hda,bus=pcie.0,addr=1b.0,id="
|
|
HDA_ID CODEC_DEVICES);
|
|
qtest_end();
|
|
}
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
g_test_init(&argc, &argv, NULL);
|
|
qtest_add_func("/intel-hda/ich6", ich6_test);
|
|
qtest_add_func("/intel-hda/ich9", ich9_test);
|
|
|
|
return g_test_run();
|
|
}
|