File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 31
31
32
32
#include "sclp.h"
33
33
34
+ #define SCLP_CMDW_ASSIGN_STORAGE 0x000d0001
35
+ #define SCLP_CMDW_UNASSIGN_STORAGE 0x000c0001
36
+
34
37
static void sclp_sync_callback (struct sclp_req * req , void * data )
35
38
{
36
39
struct completion * completion = data ;
@@ -225,7 +228,7 @@ static int sclp_assign_storage(u16 rn)
225
228
unsigned long long start ;
226
229
int rc ;
227
230
228
- rc = do_assign_storage (0x000d0001 , rn );
231
+ rc = do_assign_storage (SCLP_CMDW_ASSIGN_STORAGE , rn );
229
232
if (rc )
230
233
return rc ;
231
234
start = rn2addr (rn );
@@ -235,7 +238,7 @@ static int sclp_assign_storage(u16 rn)
235
238
236
239
static int sclp_unassign_storage (u16 rn )
237
240
{
238
- return do_assign_storage (0x000c0001 , rn );
241
+ return do_assign_storage (SCLP_CMDW_UNASSIGN_STORAGE , rn );
239
242
}
240
243
241
244
struct attach_storage_sccb {
You can’t perform that action at this time.
0 commit comments