enum sp_return sp_get_port_handle(const struct sp_port *port, void *result_ptr)
{
- TRACE("%p", port);
+ TRACE("%p, %p", port, result_ptr);
if (!port)
RETURN_ERROR(SP_ERR_ARG, "Null port");
{
TRACE("%p", port);
- if (!port)
- {
+ if (!port) {
DEBUG("Null port");
RETURN();
}
struct sp_port_config config;
enum sp_return ret;
- TRACE("%p, %x", port, flags);
+ TRACE("%p, 0x%x", port, flags);
CHECK_PORT();
enum sp_return sp_flush(struct sp_port *port, enum sp_buffer buffers)
{
- TRACE("%p, %x", port, buffers);
+ TRACE("%p, 0x%x", port, buffers);
CHECK_OPEN_PORT();
enum sp_return sp_new_config(struct sp_port_config **config_ptr)
{
- TRACE("%p", config_ptr);
struct sp_port_config *config;
+ TRACE("%p", config_ptr);
+
if (!config_ptr)
RETURN_ERROR(SP_ERR_ARG, "Null result pointer");
RETURN_OK(); \
} \
enum sp_return sp_get_config_##x(const struct sp_port_config *config, type *x) { \
- TRACE("%p", config); \
+ TRACE("%p, %p", config, x); \
if (!config) \
RETURN_ERROR(SP_ERR_ARG, "Null config"); \
*x = config->x; \