usb: gadget: udc: pch_udc: Fix a plethora of function documentation related issues
[linux/fpc-iii.git] / arch / mips / ralink / bootrom.c
blob94ca8379b83c9031170817c10b489fb65cb90439
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
4 * Copyright (C) 2013 John Crispin <john@phrozen.org>
5 */
7 #include <linux/debugfs.h>
8 #include <linux/seq_file.h>
10 #define BOOTROM_OFFSET 0x10118000
11 #define BOOTROM_SIZE 0x8000
13 static void __iomem *membase = (void __iomem *) KSEG1ADDR(BOOTROM_OFFSET);
15 static int bootrom_show(struct seq_file *s, void *unused)
17 seq_write(s, membase, BOOTROM_SIZE);
19 return 0;
22 static int bootrom_open(struct inode *inode, struct file *file)
24 return single_open(file, bootrom_show, NULL);
27 static const struct file_operations bootrom_file_ops = {
28 .open = bootrom_open,
29 .read = seq_read,
30 .llseek = seq_lseek,
31 .release = single_release,
34 static int __init bootrom_setup(void)
36 debugfs_create_file("bootrom", 0444, NULL, NULL, &bootrom_file_ops);
37 return 0;
40 postcore_initcall(bootrom_setup);