/* * Copyright 2014, Michael Ellerman, IBM Corp. * Licensed under GPLv2. */ #ifndef _SELFTESTS_POWERPC_PMU_EBB_TRACE_H #define _SELFTESTS_POWERPC_PMU_EBB_TRACE_H #include "utils.h" #define TRACE_TYPE_REG 1 #define TRACE_TYPE_COUNTER 2 #define TRACE_TYPE_STRING 3 #define TRACE_TYPE_INDENT 4 #define TRACE_TYPE_OUTDENT 5 struct trace_entry { u8 type; u8 length; u8 data[0]; }; struct trace_buffer { u64 size; bool overflow; void *tail; u8 data[0]; }; struct trace_buffer *trace_buffer_allocate(u64 size); int trace_log_reg(struct trace_buffer *tb, u64 reg, u64 value); int trace_log_counter(struct trace_buffer *tb, u64 value); int trace_log_string(struct trace_buffer *tb, char *str); int trace_log_indent(struct trace_buffer *tb); int trace_log_outdent(struct trace_buffer *tb); void trace_buffer_print(struct trace_buffer *tb); void trace_print_location(struct trace_buffer *tb); #endif /* _SELFTESTS_POWERPC_PMU_EBB_TRACE_H */ 0529494f7b199e3'/> net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/sound/pci
diff options
context:
space:
mode:
authorMartin Blumenstingl <martin.blumenstingl@googlemail.com>2017-01-16 11:17:57 +0100
committerKalle Valo <kvalo@codeaurora.org>2017-01-20 11:47:57 +0200
commita62a77881b1b6708ffeddd9bf0529494f7b199e3 (patch)
tree125b0c21e4123448371120ba02607d5cdb5c9b4f /sound/pci
parent0ed917d09d517646b4dffc96427e5a4cc14056de (diff)
brcmfmac: add support for BCM43455 with modalias sdio:c00v02D0dA9BF
BCM43455 is a more recent revision of the BCM4345. Some of the BCM43455 got a dedicated SDIO device ID which is currently not supported by brcmfmac. Adding the new sdio_device_id to brcmfmac is enough to get the BCM43455 supported because the chip itself is already supported (due to BCM4345 support in the driver). Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> Acked-by: Arend van Spriel <arend.vanspriel@broadcom.com> Reviewed-by: Andreas Färber <afaerber@suse.de> Tested-by: Andreas Färber <afaerber@suse.de> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Diffstat (limited to 'sound/pci')