debug.c (fc8e1ead9314cf0e0f1922e661428b93d3a50d88) debug.c (5a0e3ad6af8660be21ca98a971cd00f331318c05)
1/*
2 * cb710/debug.c
3 *
4 * Copyright by Michał Mirosław, 2008-2009
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10#include <linux/cb710.h>
11#include <linux/kernel.h>
12#include <linux/module.h>
1/*
2 * cb710/debug.c
3 *
4 * Copyright by Michał Mirosław, 2008-2009
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10#include <linux/cb710.h>
11#include <linux/kernel.h>
12#include <linux/module.h>
13#include <linux/slab.h>
14
15#define CB710_REG_COUNT 0x80
16
17static const u16 allow[CB710_REG_COUNT/16] = {
18 0xFFF0, 0xFFFF, 0xFFFF, 0xFFFF,
19 0xFFF0, 0xFFFF, 0xFFFF, 0xFFFF,
20};
21static const char *const prefix[ARRAY_SIZE(allow)] = {

--- 98 unchanged lines hidden ---
13
14#define CB710_REG_COUNT 0x80
15
16static const u16 allow[CB710_REG_COUNT/16] = {
17 0xFFF0, 0xFFFF, 0xFFFF, 0xFFFF,
18 0xFFF0, 0xFFFF, 0xFFFF, 0xFFFF,
19};
20static const char *const prefix[ARRAY_SIZE(allow)] = {

--- 98 unchanged lines hidden ---