tpm-chip.c (cf40a76e7d5874bb25f4404eecc58a2e033af885) | tpm-chip.c (fd3ec3663718e5f89fbcbc18a67885203fd914a1) |
---|---|
1/* 2 * Copyright (C) 2004 IBM Corporation 3 * Copyright (C) 2014 Intel Corporation 4 * 5 * Authors: 6 * Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> 7 * Leendert van Doorn <leendert@watson.ibm.com> 8 * Dave Safford <safford@watson.ibm.com> --- 12 unchanged lines hidden (view full) --- 21 */ 22 23#include <linux/poll.h> 24#include <linux/slab.h> 25#include <linux/mutex.h> 26#include <linux/spinlock.h> 27#include <linux/freezer.h> 28#include <linux/major.h> | 1/* 2 * Copyright (C) 2004 IBM Corporation 3 * Copyright (C) 2014 Intel Corporation 4 * 5 * Authors: 6 * Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> 7 * Leendert van Doorn <leendert@watson.ibm.com> 8 * Dave Safford <safford@watson.ibm.com> --- 12 unchanged lines hidden (view full) --- 21 */ 22 23#include <linux/poll.h> 24#include <linux/slab.h> 25#include <linux/mutex.h> 26#include <linux/spinlock.h> 27#include <linux/freezer.h> 28#include <linux/major.h> |
29#include <linux/tpm_eventlog.h> 30 |
|
29#include "tpm.h" | 31#include "tpm.h" |
30#include "tpm_eventlog.h" | |
31 32DEFINE_IDR(dev_nums_idr); 33static DEFINE_MUTEX(idr_lock); 34 35struct class *tpm_class; 36struct class *tpmrm_class; 37dev_t tpm_devt; 38 --- 421 unchanged lines hidden --- | 32 33DEFINE_IDR(dev_nums_idr); 34static DEFINE_MUTEX(idr_lock); 35 36struct class *tpm_class; 37struct class *tpmrm_class; 38dev_t tpm_devt; 39 --- 421 unchanged lines hidden --- |