projects
/
platform
/
kernel
/
u-boot.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge git://www.denx.de/git/u-boot-marvell
[platform/kernel/u-boot.git]
/
include
/
fsl_devdis.h
1
/*
2
* Copyright 2015 Freescale Semiconductor, Inc.
3
*
4
* SPDX-License-Identifier: GPL-2.0+
5
*/
6
7
#ifndef __FSL_DEVDIS_H_
8
#define __FSL_DEVDIS_H_
9
10
struct devdis_table {
11
char name[32];
12
u32 offset;
13
u32 mask;
14
};
15
16
void device_disable(const struct devdis_table *tbl, uint32_t num);
17
18
#endif