diff options
Diffstat (limited to 'drivers/char/tpm/tpm_atmel.c')
| -rw-r--r-- | drivers/char/tpm/tpm_atmel.c | 30 | 
1 files changed, 2 insertions, 28 deletions
diff --git a/drivers/char/tpm/tpm_atmel.c b/drivers/char/tpm/tpm_atmel.c index 99d6820c611..6069d13ae4a 100644 --- a/drivers/char/tpm/tpm_atmel.c +++ b/drivers/char/tpm/tpm_atmel.c @@ -121,31 +121,7 @@ static bool tpm_atml_req_canceled(struct tpm_chip *chip, u8 status)  	return (status == ATML_STATUS_READY);  } -static const struct file_operations atmel_ops = { -	.owner = THIS_MODULE, -	.llseek = no_llseek, -	.open = tpm_open, -	.read = tpm_read, -	.write = tpm_write, -	.release = tpm_release, -}; - -static DEVICE_ATTR(pubek, S_IRUGO, tpm_show_pubek, NULL); -static DEVICE_ATTR(pcrs, S_IRUGO, tpm_show_pcrs, NULL); -static DEVICE_ATTR(caps, S_IRUGO, tpm_show_caps, NULL); -static DEVICE_ATTR(cancel, S_IWUSR |S_IWGRP, NULL, tpm_store_cancel); - -static struct attribute* atmel_attrs[] = { -	&dev_attr_pubek.attr, -	&dev_attr_pcrs.attr, -	&dev_attr_caps.attr, -	&dev_attr_cancel.attr, -	NULL, -}; - -static struct attribute_group atmel_attr_grp = { .attrs = atmel_attrs }; - -static const struct tpm_vendor_specific tpm_atmel = { +static const struct tpm_class_ops tpm_atmel = {  	.recv = tpm_atml_recv,  	.send = tpm_atml_send,  	.cancel = tpm_atml_cancel, @@ -153,8 +129,6 @@ static const struct tpm_vendor_specific tpm_atmel = {  	.req_complete_mask = ATML_STATUS_BUSY | ATML_STATUS_DATA_AVAIL,  	.req_complete_val = ATML_STATUS_DATA_AVAIL,  	.req_canceled = tpm_atml_req_canceled, -	.attr_group = &atmel_attr_grp, -	.miscdev = { .fops = &atmel_ops, },  };  static struct platform_device *pdev; @@ -202,7 +176,7 @@ static int __init init_atmel(void)  	have_region =  	    (atmel_request_region -	     (tpm_atmel.base, region_size, "tpm_atmel0") == NULL) ? 0 : 1; +	     (base, region_size, "tpm_atmel0") == NULL) ? 0 : 1;  	pdev = platform_device_register_simple("tpm_atmel", -1, NULL, 0);  	if (IS_ERR(pdev)) {  | 
