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