tpm_nsc.c (570302a31149083b0ac8b2f08c195e9211c2c0c6) tpm_nsc.c (874ec33ff9ccf3651590697a2c2923b911bf31d0)
1/*
2 * Copyright (C) 2004 IBM Corporation
3 *
4 * Authors:
5 * Leendert van Doorn <leendert@watson.ibm.com>
6 * Dave Safford <safford@watson.ibm.com>
7 * Reiner Sailer <sailer@watson.ibm.com>
8 * Kylene Hall <kjhall@us.ibm.com>

--- 230 unchanged lines hidden (view full) ---

239static DEVICE_ATTR(caps, S_IRUGO, tpm_show_caps, NULL);
240static DEVICE_ATTR(cancel, S_IWUSR|S_IWGRP, NULL, tpm_store_cancel);
241
242static struct attribute * nsc_attrs[] = {
243 &dev_attr_pubek.attr,
244 &dev_attr_pcrs.attr,
245 &dev_attr_caps.attr,
246 &dev_attr_cancel.attr,
1/*
2 * Copyright (C) 2004 IBM Corporation
3 *
4 * Authors:
5 * Leendert van Doorn <leendert@watson.ibm.com>
6 * Dave Safford <safford@watson.ibm.com>
7 * Reiner Sailer <sailer@watson.ibm.com>
8 * Kylene Hall <kjhall@us.ibm.com>

--- 230 unchanged lines hidden (view full) ---

239static DEVICE_ATTR(caps, S_IRUGO, tpm_show_caps, NULL);
240static DEVICE_ATTR(cancel, S_IWUSR|S_IWGRP, NULL, tpm_store_cancel);
241
242static struct attribute * nsc_attrs[] = {
243 &dev_attr_pubek.attr,
244 &dev_attr_pcrs.attr,
245 &dev_attr_caps.attr,
246 &dev_attr_cancel.attr,
247 0,
247 NULL,
248};
249
250static struct attribute_group nsc_attr_grp = { .attrs = nsc_attrs };
251
252static struct tpm_vendor_specific tpm_nsc = {
253 .recv = tpm_nsc_recv,
254 .send = tpm_nsc_send,
255 .cancel = tpm_nsc_cancel,

--- 141 unchanged lines hidden ---
248};
249
250static struct attribute_group nsc_attr_grp = { .attrs = nsc_attrs };
251
252static struct tpm_vendor_specific tpm_nsc = {
253 .recv = tpm_nsc_recv,
254 .send = tpm_nsc_send,
255 .cancel = tpm_nsc_cancel,

--- 141 unchanged lines hidden ---