mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-16 17:56:39 +07:00
Staging: android: binder: cleanup some long lines
This file has a lot of long line problems due to the massive indent issues that exist. This just cleans up some of the really really long ones. Signed-off-by: Daniel Walker <dwalker@fifo99.com> Cc: Arve Hjønnevåg <arve@android.com> Cc: Brian Swetland <swetland@google.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
8683b98728
commit
707636ff4b
@ -1308,7 +1308,8 @@ static void binder_transaction_buffer_release(struct binder_proc *proc,
|
|||||||
buffer->data_size < sizeof(*fp) ||
|
buffer->data_size < sizeof(*fp) ||
|
||||||
!IS_ALIGNED(*offp, sizeof(void *))) {
|
!IS_ALIGNED(*offp, sizeof(void *))) {
|
||||||
printk(KERN_ERR "binder: transaction release %d bad"
|
printk(KERN_ERR "binder: transaction release %d bad"
|
||||||
"offset %zd, size %zd\n", debug_id, *offp, buffer->data_size);
|
"offset %zd, size %zd\n", debug_id,
|
||||||
|
*offp, buffer->data_size);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
fp = (struct flat_binder_object *)(buffer->data + *offp);
|
fp = (struct flat_binder_object *)(buffer->data + *offp);
|
||||||
@ -1317,7 +1318,8 @@ static void binder_transaction_buffer_release(struct binder_proc *proc,
|
|||||||
case BINDER_TYPE_WEAK_BINDER: {
|
case BINDER_TYPE_WEAK_BINDER: {
|
||||||
struct binder_node *node = binder_get_node(proc, fp->binder);
|
struct binder_node *node = binder_get_node(proc, fp->binder);
|
||||||
if (node == NULL) {
|
if (node == NULL) {
|
||||||
printk(KERN_ERR "binder: transaction release %d bad node %p\n", debug_id, fp->binder);
|
printk(KERN_ERR "binder: transaction release %d"
|
||||||
|
" bad node %p\n", debug_id, fp->binder);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
binder_debug(BINDER_DEBUG_TRANSACTION,
|
binder_debug(BINDER_DEBUG_TRANSACTION,
|
||||||
@ -1329,7 +1331,9 @@ static void binder_transaction_buffer_release(struct binder_proc *proc,
|
|||||||
case BINDER_TYPE_WEAK_HANDLE: {
|
case BINDER_TYPE_WEAK_HANDLE: {
|
||||||
struct binder_ref *ref = binder_get_ref(proc, fp->handle);
|
struct binder_ref *ref = binder_get_ref(proc, fp->handle);
|
||||||
if (ref == NULL) {
|
if (ref == NULL) {
|
||||||
printk(KERN_ERR "binder: transaction release %d bad handle %ld\n", debug_id, fp->handle);
|
printk(KERN_ERR "binder: transaction release %d"
|
||||||
|
" bad handle %ld\n", debug_id,
|
||||||
|
fp->handle);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
binder_debug(BINDER_DEBUG_TRANSACTION,
|
binder_debug(BINDER_DEBUG_TRANSACTION,
|
||||||
@ -1346,7 +1350,8 @@ static void binder_transaction_buffer_release(struct binder_proc *proc,
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
printk(KERN_ERR "binder: transaction release %d bad object type %lx\n", debug_id, fp->type);
|
printk(KERN_ERR "binder: transaction release %d bad "
|
||||||
|
"object type %lx\n", debug_id, fp->type);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1599,7 +1604,8 @@ static void binder_transaction(struct binder_proc *proc,
|
|||||||
else
|
else
|
||||||
fp->type = BINDER_TYPE_WEAK_HANDLE;
|
fp->type = BINDER_TYPE_WEAK_HANDLE;
|
||||||
fp->handle = ref->desc;
|
fp->handle = ref->desc;
|
||||||
binder_inc_ref(ref, fp->type == BINDER_TYPE_HANDLE, &thread->todo);
|
binder_inc_ref(ref, fp->type == BINDER_TYPE_HANDLE,
|
||||||
|
&thread->todo);
|
||||||
|
|
||||||
binder_debug(BINDER_DEBUG_TRANSACTION,
|
binder_debug(BINDER_DEBUG_TRANSACTION,
|
||||||
" node %d u%p -> ref %d desc %d\n",
|
" node %d u%p -> ref %d desc %d\n",
|
||||||
|
Loading…
Reference in New Issue
Block a user