[coreboot-gerrit] New patch to review for coreboot: lib/nhlt: drop nhlt_soc_add_endpoint()

Aaron Durbin (adurbin@chromium.org) gerrit at coreboot.org
Tue Jun 28 22:44:27 CEST 2016


Aaron Durbin (adurbin at chromium.org) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/15489

-gerrit

commit 05ae4ba9ecc5992e4bd36c6be93a0d1c007d1e36
Author: Aaron Durbin <adurbin at chromium.org>
Date:   Tue Jun 28 15:36:01 2016 -0500

    lib/nhlt: drop nhlt_soc_add_endpoint()
    
    The nhlt_soc_add_endpoint() is no longer used. Drop its declaration.
    
    Change-Id: I3b68471650a43c5faae44bde523abca7ba250a34
    Signed-off-by: Aaron Durbin <adurbin at chromium.org>
---
 src/include/nhlt.h | 10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/src/include/nhlt.h b/src/include/nhlt.h
index 3300d43..17b7d11 100644
--- a/src/include/nhlt.h
+++ b/src/include/nhlt.h
@@ -45,7 +45,7 @@ struct nhlt_format_config;
  * An example sequence:
  *
  * nhlt = nhlt_init()
- * ep = nhlt_soc_add_endpoint()
+ * ep = nhlt_add_endpoint()
  * nhlt_endpoint_append_config(ep)
  * nhlt_endpoint_add_formats(ep)
  * nhlt_soc_serialize()
@@ -97,19 +97,13 @@ int nhlt_add_ssp_endpoints(struct nhlt *nhlt, int virtual_bus_id,
 /*
  * Add endpoint to NHLT object. Returns NULL on error.
  *
- * Note that the SoC variant uses SoC-specifc types for the hardware interface
- * and device types. This is to allow the SoC code to validate its particular
- * device support for specific hardware interfaces.
- *
- * The more generic nhlt_add_endpoint() is called by the SoC code to provide
+ * generic nhlt_add_endpoint() is called by the SoC code to provide
  * the specific assumptions/uses for NHLT for that platform. All fields
  * are the NHLT enumerations found within this header file.
  */
 struct nhlt_endpoint *nhlt_add_endpoint(struct nhlt *nhlt, int link_type,
 					int device_type, int dir,
 					uint16_t vid, uint16_t did);
-struct nhlt_endpoint *nhlt_soc_add_endpoint(struct nhlt *nhlt, int soc_hwintf,
-						int soc_devtype, int dir);
 
 /*
  * Append blob of configuration to the endpoint proper. Returns 0 on



More information about the coreboot-gerrit mailing list