| .. | .. |
|---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-only */ |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * Copyright (C) 2012 IBM Corporation |
|---|
| 3 | 4 | * |
|---|
| .. | .. |
|---|
| 7 | 8 | * |
|---|
| 8 | 9 | * Device driver for TCG/TCPA TPM (trusted platform module). |
|---|
| 9 | 10 | * Specifications at www.trustedcomputinggroup.org |
|---|
| 10 | | - * |
|---|
| 11 | | - * This program is free software; you can redistribute it and/or |
|---|
| 12 | | - * modify it under the terms of the GNU General Public License as |
|---|
| 13 | | - * published by the Free Software Foundation, version 2 of the |
|---|
| 14 | | - * License. |
|---|
| 15 | | - * |
|---|
| 16 | 11 | */ |
|---|
| 17 | 12 | |
|---|
| 18 | 13 | #ifndef __TPM_IBMVTPM_H__ |
|---|
| .. | .. |
|---|
| 46 | 41 | wait_queue_head_t wq; |
|---|
| 47 | 42 | u16 res_len; |
|---|
| 48 | 43 | u32 vtpm_version; |
|---|
| 49 | | - bool tpm_processing_cmd; |
|---|
| 44 | + u8 tpm_processing_cmd; |
|---|
| 50 | 45 | }; |
|---|
| 51 | 46 | |
|---|
| 52 | 47 | #define CRQ_RES_BUF_SIZE PAGE_SIZE |
|---|