mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-15 16:53:54 +08:00
7f317d3490
Rationale: Reduces attack surface on kernel devs opening the links for MITM as HTTPS traffic is much harder to manipulate. Signed-off-by: Alexander A. Klimov <grandmaster@al2klimov.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Reviewed-by: Kees Cook <keescook@chromium.org> Link: http://lkml.kernel.org/r/20200726110117.16346-1-grandmaster@al2klimov.de Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
27 lines
828 B
C
27 lines
828 B
C
/*
|
|
* include/linux/platform_data/uio_pruss.h
|
|
*
|
|
* Platform data for uio_pruss driver
|
|
*
|
|
* Copyright (C) 2010-11 Texas Instruments Incorporated - https://www.ti.com/
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation version 2.
|
|
*
|
|
* This program is distributed "as is" WITHOUT ANY WARRANTY of any
|
|
* kind, whether express or implied; without even the implied warranty
|
|
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*/
|
|
|
|
#ifndef _UIO_PRUSS_H_
|
|
#define _UIO_PRUSS_H_
|
|
|
|
/* To configure the PRUSS INTC base offset for UIO driver */
|
|
struct uio_pruss_pdata {
|
|
u32 pintc_base;
|
|
struct gen_pool *sram_pool;
|
|
};
|
|
#endif /* _UIO_PRUSS_H_ */
|