aboutsummaryrefslogtreecommitdiff
path: root/drivers/staging/csr/csr_panic.c
blob: 2564e80297e27ffbaff39da27b0681cd09b94dbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*****************************************************************************

            (c) Cambridge Silicon Radio Limited 2010
            All rights reserved and confidential information of CSR

            Refer to LICENSE.txt included with this source for details
            on the license terms.

*****************************************************************************/

#include <linux/kernel.h>
#include <linux/version.h>
#include <linux/module.h>

#include "csr_types.h"
#include "csr_panic.h"

void CsrPanic(CsrUint8 tech, CsrUint16 reason, const char *p)
{
    BUG_ON(1);
}
EXPORT_SYMBOL_GPL(CsrPanic);