tpm_infineon.c (1e3b73a95793555860512008035f6822406a2a79) | tpm_infineon.c (01ad1fa75dd243909d62dba25a93254b20d5fe81) |
---|---|
1/* 2 * Description: 3 * Device Driver for the Infineon Technologies 4 * SLD 9630 TT 1.1 and SLB 9635 TT 1.2 Trusted Platform Module 5 * Specifications at www.trustedcomputinggroup.org 6 * 7 * Copyright (C) 2005, Marcel Selhorst <tpmdd@selhorst.net> 8 * Sirrix AG - security technologies <tpmdd@sirrix.com> and --- 357 unchanged lines hidden (view full) --- 366 */ 367} 368 369static u8 tpm_inf_status(struct tpm_chip *chip) 370{ 371 return tpm_data_in(STAT); 372} 373 | 1/* 2 * Description: 3 * Device Driver for the Infineon Technologies 4 * SLD 9630 TT 1.1 and SLB 9635 TT 1.2 Trusted Platform Module 5 * Specifications at www.trustedcomputinggroup.org 6 * 7 * Copyright (C) 2005, Marcel Selhorst <tpmdd@selhorst.net> 8 * Sirrix AG - security technologies <tpmdd@sirrix.com> and --- 357 unchanged lines hidden (view full) --- 366 */ 367} 368 369static u8 tpm_inf_status(struct tpm_chip *chip) 370{ 371 return tpm_data_in(STAT); 372} 373 |
374static const struct tpm_vendor_specific tpm_inf = { | 374static const struct tpm_class_ops tpm_inf = { |
375 .recv = tpm_inf_recv, 376 .send = tpm_inf_send, 377 .cancel = tpm_inf_cancel, 378 .status = tpm_inf_status, 379 .req_complete_mask = 0, 380 .req_complete_val = 0, 381}; 382 --- 269 unchanged lines hidden --- | 375 .recv = tpm_inf_recv, 376 .send = tpm_inf_send, 377 .cancel = tpm_inf_cancel, 378 .status = tpm_inf_status, 379 .req_complete_mask = 0, 380 .req_complete_val = 0, 381}; 382 --- 269 unchanged lines hidden --- |