staging/crystalhd: Fixes line over 80 characters warning in crystalhd_cmds.*
Fixes the following checkpatch warning WARNING: line over 80 characters Signed-off-by: Amarjargal Gundjalam <amarjargal16@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
12dfa2e302
commit
3e4a7b8177
@ -472,8 +472,8 @@ static enum BC_STATUS bc_cproc_hw_txdma(struct crystalhd_cmd *ctx,
|
||||
}
|
||||
|
||||
/* Helper function to check on user buffers */
|
||||
static enum BC_STATUS bc_cproc_check_inbuffs(bool pin, void *ubuff, uint32_t ub_sz,
|
||||
uint32_t uv_off, bool en_422)
|
||||
static enum BC_STATUS bc_cproc_check_inbuffs(bool pin, void *ubuff,
|
||||
uint32_t ub_sz, uint32_t uv_off, bool en_422)
|
||||
{
|
||||
if (!ubuff || !ub_sz) {
|
||||
BCMLOG_ERR("%s->Invalid Arg %p %x\n",
|
||||
@ -483,8 +483,9 @@ static enum BC_STATUS bc_cproc_check_inbuffs(bool pin, void *ubuff, uint32_t ub_
|
||||
|
||||
/* Check for alignment */
|
||||
if (((uintptr_t)ubuff) & 0x03) {
|
||||
BCMLOG_ERR("%s-->Un-aligned address not implemented yet.. %p\n",
|
||||
((pin) ? "TX" : "RX"), ubuff);
|
||||
BCMLOG_ERR(
|
||||
"%s-->Un-aligned address not implemented yet.. %p\n",
|
||||
((pin) ? "TX" : "RX"), ubuff);
|
||||
return BC_STS_NOT_IMPL;
|
||||
}
|
||||
if (pin)
|
||||
@ -572,7 +573,8 @@ static enum BC_STATUS bc_cproc_add_cap_buff(struct crystalhd_cmd *ctx,
|
||||
if (!dio_hnd)
|
||||
return BC_STS_ERROR;
|
||||
|
||||
sts = crystalhd_hw_add_cap_buffer(&ctx->hw_ctx, dio_hnd, (ctx->state == BC_LINK_READY));
|
||||
sts = crystalhd_hw_add_cap_buffer(&ctx->hw_ctx, dio_hnd,
|
||||
(ctx->state == BC_LINK_READY));
|
||||
if ((sts != BC_STS_SUCCESS) && (sts != BC_STS_BUSY)) {
|
||||
crystalhd_unmap_dio(ctx->adp, dio_hnd);
|
||||
return sts;
|
||||
@ -618,7 +620,8 @@ static enum BC_STATUS bc_cproc_fetch_frame(struct crystalhd_cmd *ctx,
|
||||
|
||||
sts = crystalhd_hw_get_cap_buffer(&ctx->hw_ctx, &frame->PibInfo, &dio);
|
||||
if (sts != BC_STS_SUCCESS)
|
||||
return (ctx->state & BC_LINK_SUSPEND) ? BC_STS_IO_USER_ABORT : sts;
|
||||
return (ctx->state & BC_LINK_SUSPEND) ?
|
||||
BC_STS_IO_USER_ABORT : sts;
|
||||
|
||||
frame->Flags = dio->uinfo.comp_flags;
|
||||
|
||||
@ -673,7 +676,8 @@ static enum BC_STATUS bc_cproc_flush_cap_buffs(struct crystalhd_cmd *ctx,
|
||||
frame = &idata->udata.u.DecOutData;
|
||||
for (count = 0; count < BC_RX_LIST_CNT; count++) {
|
||||
|
||||
sts = crystalhd_hw_get_cap_buffer(&ctx->hw_ctx, &frame->PibInfo, &dio);
|
||||
sts = crystalhd_hw_get_cap_buffer(&ctx->hw_ctx,
|
||||
&frame->PibInfo, &dio);
|
||||
if (sts != BC_STS_SUCCESS)
|
||||
break;
|
||||
|
||||
@ -916,7 +920,8 @@ enum BC_STATUS crystalhd_user_open(struct crystalhd_cmd *ctx,
|
||||
* Closer application handle and release app specific
|
||||
* resources.
|
||||
*/
|
||||
enum BC_STATUS crystalhd_user_close(struct crystalhd_cmd *ctx, struct crystalhd_user *uc)
|
||||
enum BC_STATUS crystalhd_user_close(struct crystalhd_cmd *ctx,
|
||||
struct crystalhd_user *uc)
|
||||
{
|
||||
uint32_t mode = uc->mode;
|
||||
|
||||
@ -1008,8 +1013,8 @@ enum BC_STATUS crystalhd_delete_cmd_context(struct crystalhd_cmd *ctx)
|
||||
* mode of operation and returns the function pointer
|
||||
* from the cproc table.
|
||||
*/
|
||||
crystalhd_cmd_proc crystalhd_get_cmd_proc(struct crystalhd_cmd *ctx, uint32_t cmd,
|
||||
struct crystalhd_user *uc)
|
||||
crystalhd_cmd_proc crystalhd_get_cmd_proc(struct crystalhd_cmd *ctx,
|
||||
uint32_t cmd, struct crystalhd_user *uc)
|
||||
{
|
||||
crystalhd_cmd_proc cproc = NULL;
|
||||
unsigned int i, tbl_sz;
|
||||
@ -1024,7 +1029,8 @@ crystalhd_cmd_proc crystalhd_get_cmd_proc(struct crystalhd_cmd *ctx, uint32_t cm
|
||||
return NULL;
|
||||
}
|
||||
|
||||
tbl_sz = sizeof(g_crystalhd_cproc_tbl) / sizeof(struct crystalhd_cmd_tbl);
|
||||
tbl_sz = sizeof(g_crystalhd_cproc_tbl) /
|
||||
sizeof(struct crystalhd_cmd_tbl);
|
||||
for (i = 0; i < tbl_sz; i++) {
|
||||
if (g_crystalhd_cproc_tbl[i].cmd_id == cmd) {
|
||||
if ((uc->mode == DTS_MONITOR_MODE) &&
|
||||
|
@ -66,7 +66,8 @@ struct crystalhd_cmd {
|
||||
struct crystalhd_hw hw_ctx;
|
||||
};
|
||||
|
||||
typedef enum BC_STATUS(*crystalhd_cmd_proc)(struct crystalhd_cmd *, struct crystalhd_ioctl_data *);
|
||||
typedef enum BC_STATUS(*crystalhd_cmd_proc)(struct crystalhd_cmd *,
|
||||
struct crystalhd_ioctl_data *);
|
||||
|
||||
struct crystalhd_cmd_tbl {
|
||||
uint32_t cmd_id;
|
||||
@ -74,13 +75,17 @@ struct crystalhd_cmd_tbl {
|
||||
uint32_t block_mon;
|
||||
};
|
||||
|
||||
enum BC_STATUS crystalhd_suspend(struct crystalhd_cmd *ctx, struct crystalhd_ioctl_data *idata);
|
||||
enum BC_STATUS crystalhd_suspend(struct crystalhd_cmd *ctx,
|
||||
struct crystalhd_ioctl_data *idata);
|
||||
enum BC_STATUS crystalhd_resume(struct crystalhd_cmd *ctx);
|
||||
crystalhd_cmd_proc crystalhd_get_cmd_proc(struct crystalhd_cmd *ctx, uint32_t cmd,
|
||||
struct crystalhd_user *uc);
|
||||
enum BC_STATUS crystalhd_user_open(struct crystalhd_cmd *ctx, struct crystalhd_user **user_ctx);
|
||||
enum BC_STATUS crystalhd_user_close(struct crystalhd_cmd *ctx, struct crystalhd_user *uc);
|
||||
enum BC_STATUS crystalhd_setup_cmd_context(struct crystalhd_cmd *ctx, struct crystalhd_adp *adp);
|
||||
crystalhd_cmd_proc crystalhd_get_cmd_proc(struct crystalhd_cmd *ctx,
|
||||
uint32_t cmd, struct crystalhd_user *uc);
|
||||
enum BC_STATUS crystalhd_user_open(struct crystalhd_cmd *ctx,
|
||||
struct crystalhd_user **user_ctx);
|
||||
enum BC_STATUS crystalhd_user_close(struct crystalhd_cmd *ctx,
|
||||
struct crystalhd_user *uc);
|
||||
enum BC_STATUS crystalhd_setup_cmd_context(struct crystalhd_cmd *ctx,
|
||||
struct crystalhd_adp *adp);
|
||||
enum BC_STATUS crystalhd_delete_cmd_context(struct crystalhd_cmd *ctx);
|
||||
bool crystalhd_cmd_interrupt(struct crystalhd_cmd *ctx);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user