tpm_atmel.c (b888c87b7498557d1dbb9de3d4b8402b1bb89193) | tpm_atmel.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> --- 128 unchanged lines hidden (view full) --- 137static DEVICE_ATTR(caps, S_IRUGO, tpm_show_caps, NULL); 138static DEVICE_ATTR(cancel, S_IWUSR |S_IWGRP, NULL, tpm_store_cancel); 139 140static struct attribute* atmel_attrs[] = { 141 &dev_attr_pubek.attr, 142 &dev_attr_pcrs.attr, 143 &dev_attr_caps.attr, 144 &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> --- 128 unchanged lines hidden (view full) --- 137static DEVICE_ATTR(caps, S_IRUGO, tpm_show_caps, NULL); 138static DEVICE_ATTR(cancel, S_IWUSR |S_IWGRP, NULL, tpm_store_cancel); 139 140static struct attribute* atmel_attrs[] = { 141 &dev_attr_pubek.attr, 142 &dev_attr_pcrs.attr, 143 &dev_attr_caps.attr, 144 &dev_attr_cancel.attr, |
145 0, | 145 NULL, |
146}; 147 148static struct attribute_group atmel_attr_grp = { .attrs = atmel_attrs }; 149 150static struct tpm_vendor_specific tpm_atmel = { 151 .recv = tpm_atml_recv, 152 .send = tpm_atml_send, 153 .cancel = tpm_atml_cancel, --- 105 unchanged lines hidden --- | 146}; 147 148static struct attribute_group atmel_attr_grp = { .attrs = atmel_attrs }; 149 150static struct tpm_vendor_specific tpm_atmel = { 151 .recv = tpm_atml_recv, 152 .send = tpm_atml_send, 153 .cancel = tpm_atml_cancel, --- 105 unchanged lines hidden --- |